	function oPW(URL,width,height,name) {
			var strURL = URL;
			var intWidth = width;
			var intHeight = height;
			var strName = name;
			newWindow = window.open(strURL,strName,'toolbar=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,location=no,width='+intWidth+',height='+intHeight);
	}
	
processMenu = function() {
    //alert("loaded");
	if (document.all&&document.getElementById) {
	menuSpan1 = document.getElementById("menu1");
	menuSpan1.style.display = "none";
    menuSpan1.className = "subMenuSpan";

	menuTD1 = document.getElementById("td1");
	menuTD1.onmouseover=function(){
		menuSpan1.style.display = "block";
        //alert("mouseover");
	}
	menuTD1.onmouseout=function(){
		menuSpan1.style.display = "none";
	}
		
	menuSpan2 = document.getElementById("menu2");
	menuSpan2.style.display = "none";
	menuSpan2.className = "subMenuSpan";
	
	menuTD2 = document.getElementById("td2");
	menuTD2.onmouseover=function(){
		menuSpan2.style.display = "block";
	}
	menuTD2.onmouseout=function(){
		menuSpan2.style.display = "none";

	    }   
	}
}

   function processCB(iWhich){

	              //alert('OK1');
  //if (document.all&&document.getElementById) {
            //alert('OK2');
            var i=0;
            for (i=2;i<=12;i++)
                {
                var cb = document.getElementById("cb" + i);

                if(cb != null){
                    if(iWhich == 0){
                        cb.checked = false;
                    }else{
                        cb.checked = true;
                    }
                }
            }
        //} 
   } 
