

	var mov;
	var xpos=-200;
	
	function VerOcultarMenu() {
	if (mov==2) { mov=-2} else {mov=2};
	document.getElementById("Menu").style.top=parseInt(document.getElementById("puntero").style.top)+30+"px";
	document.getElementById("Menu").style.visibility="visible";
	MoverMenu() }
	
	function MoverMenu(){
	xpos=xpos+12*mov;
	if(xpos <- 200) {xpos=-200};
	if(xpos > 10) {xpos=10};
	document.getElementById("Menu").style.left=xpos+"px";
	if (xpos <=-200 || xpos >=10)
		{window.clearTimeout() } 
	else {window.setTimeout("MoverMenu();",50);} }


	 function mostrarInfo(){
				    window.open('Flash.html','PANTALLA_Flotante');				
					mostrarAviso(true);
			}
			
            function mostrarAviso(visible){
					document.getElementById('divAviso').style.visibility = visible ? 'visible' : 'hidden' ;
					if (!visible){ window.open('_blank','PANTALLA_Flotante'); }
				}
