// JavaScript Document

 function topMenuBg_on (menuNum) {   
  document.getElementById("menu_item_"+menuNum).className = "activeBg";  
 }

 function topMenuBg_off (menuNum) {
  document.getElementById("menu_item_"+menuNum).className = "";  
 }
 
 
// Left Menu Bg Activation

 function turnOn(theField) {
  if (document.getElementById(theField).className != "bottomYellowLine bgSelected") {
    document.getElementById(theField).className = "bottomYellowLine bgOn";
   }
  }
  
  function turnOff(theField) {
    if (document.getElementById(theField).className != "bottomYellowLine bgSelected") {
    document.getElementById(theField).className = "bottomYellowLine";
   }
  }
  
  function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}



//Upload Documents

function popup(file) {
  if ((navigator.appName == 'Microsoft Internet Explorer') && (parseInt(navigator.appVersion) <= 3)) {
	  }
  else {
	  Help = window.open(file, '', 'directories=no,status=yes,location=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes,width=500,height=300'); 
	  Help.window.focus();
	//return false;
  }
}
 
function setUploadValue(ctrl,strFileName){
     form1.URL.value=strFileName;
}