	
	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);
	}
	
	function logout(){
		var blnConfirm = confirm("Are you sure you want to log out?");
		if(blnConfirm){
			window.location.href= "logout.aspx";
		}
	}

processMenu = function() {
	if (document.all&&document.getElementById) {
	menuSpan1 = document.getElementById("menu1");
	menuSpan1.style.display = "none";
    menuSpan1.className = "menuSpan";

	menuTD1 = document.getElementById("td1");
	menuTD1.onmouseover=function(){
		menuSpan1.style.display = "block";
	}
	menuTD1.onmouseout=function(){
		menuSpan1.style.display = "none";
	}
		
	menuSpan2 = document.getElementById("menu2");
	menuSpan2.style.display = "none";
	menuSpan2.className = "menuSpan";
	
	menuTD2 = document.getElementById("td2");
	menuTD2.onmouseover=function(){
		menuSpan2.style.display = "block";
	}
	menuTD2.onmouseout=function(){
		menuSpan2.style.display = "none";

	    }   
	}
}
