//toggle visibility script
function toggle(targetId) { 
     if (document.getElementById) { 
          var target = document.getElementById( targetId ); 
          target.style.display = (target.style.display == 'block' ? 'none' : 'block'); 
     } 
 }
//---------------------------------------------------------------------------------------------------
//full screen chromeless window
 function fullscreen() {
windowfull=window.open("content.htm","secWindow","scrollbars=0,resizable=no,status=no");
windowfull.moveTo(0,0);
windowfull.resizeTo(window.screen.availWidth, window.screen.availHeight);
windowfull.focus();
}
//---------------------------------------------------------------------------------------------------
//open popup window
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//---------------------------------------------------------------------------------------------------
