 navHover = function() {
	var lis = document.getElementById("navmenu-h").getElementsByTagName("LI");
	for (var i=0; i<lis.length; i++) {
		lis[i].onmouseover=function() {
			this.className+=" iehover";
			hideSelects();
		}
		lis[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
			showSelects();
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", navHover);

var vUser = '', vSection = '', vName = '';
	
	if (gsUserLogon) {
		vUser += gsUserLogon.toLowerCase();	
	}
	vSection += gsSection;
	vName += gsName.toLowerCase();
	if (vSection !="CUSTOMER" && vSection!="PUBLIC" && vSection!="SYSAD" ) {
		 vName += ' - ';
	}
	
	if (vSection =="SYSAD"){  
		vName += ' - ';
		
	}

	function goLoggedSection(){
	    document.location = '../public/default.asp?op=goLogged';
	}

	
	function _Write (shtml){
		document.writeln('<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" id=\"tMenuBar\" name=\"tMenuBar\" width=\"100%\"><tr>')
		document.writeln('<td width=\"70%\"  nowrap=\"nowrap\" class=\"menuLink\" style="color:#FFFFFF;"> '+shtml+'</td>');
		if ((vSection !="PUBLIC") && vSection !="CUSTOMER"){
		    document.writeln('<td width=\"30%\"  class=\"menuLink2\" align=\"right\" width=\"1%\" style="color:#FFFFFF;">' + '<b>' + vName + '</b>' + vUser + '</td>');
		}
	
		if (vSection =="CUSTOMER"){
		    document.writeln('<td nowrap=\"nowrap\" class=\"menuLink2\" align=\"right\" width=\"1%\" style="color:#FFFFFF;">' + '<b>' + vName + '</b>' + vUser + '</td>');
		}
	
		if (gsLoggedID > 0 && vSection != "PUBLIC"){
		    document.writeln('<td nowrap="nowrap" class=\"menuLink2\" align=\"right\" width=\"5%\" style="color:#FFFFFF;"><img width="7" src="../images/clearpixel.gif" /><a href="#" onclick="javascript:goLoggedSection();"><img src="../images/buttons/look_user.gif" border="0" title="Session Administradora Activa" /></a><img width="7" src="../images/clearpixel.gif" />' + '</td>');
		}
		document.writeln('</tr></table>');


	}




function showSelects(){
   var elements = document.getElementsByTagName("select");
   for (i=0;i< elements.length;i++){
      elements[i].style.visibility='visible';
   }
}

function hideSelects(){
   var elements = document.getElementsByTagName("select");
   for (i=0;i< elements.length;i++){
   elements[i].style.visibility='hidden';
   }
}
	
 
