<!--//
	function goToIntranet(){
		document.forms[0].submit();
	}
	var lang = "es";
	var activeOption = null;
	function menu(option, active, imagePath){
		var path = "";
		if(typeof(imagePath) != 'undefined'){
			path = imagePath;
		}
		
		if(activeOption != null){			
			document.getElementById('op' + activeOption).src = path + "images/menu/" + lang + "/button" + activeOption + "_off.gif";
		}
		
		document.getElementById('op' + option).src = (active) ? path + "images/menu/" + lang + "/button" + option + "_on.gif" : 
																path + "images/menu/" + lang + "/button" + option + "_off.gif";
		activeOption = option;
	}
//-->