var tiempo = 0;
var idmenu = 0;


function poner(imagen, evt) {
	if (tiempo > 0) {
	     clearTimeout(tiempo)
	 }
	 if (idmenu > 0) {
	    limpiar(idmenu)
	}

	 posicionx = 0
	 document.getElementById('menu' + imagen).src='./imagenes_html/menuon' + imagen + '.gif'
	 if (document.getElementById('submn' + imagen)) {
		if (document.getElementById('submn' + imagen).style.visibility == "visible") {
		     return
		 }
		 if (evt.offsetX != null) {
			posicionx = evt.clientX - evt.offsetX
			posiciony = evt.clientY - evt.offsetY + 30
		 } else {
		   if ((window.innerWidth) && (window.innerWidth > 0)) {
		      if (window.innerWidth > 751) {
				    posicionx = ((window.innerWidth - 751)/ 2) + 170 + (imagen - 1) * 96
		      } else {
				    posicionx = 183 + (imagen - 1) * 96
		      }
		   } else {
				posicionx = 183 + (imagen - 1) * 96
			}
			posiciony = 75
	    }
		if (posicionx > 0) {
			 document.getElementById('submn' + imagen).style.left = posicionx
			 document.getElementById('submn' + imagen).style.top = posiciony
			 document.getElementById('submn' + imagen).style.visibility = "visible"
		}
	 }
}


function ponerSub(menu, submenu) {
     if (tiempo > 0) {
	     clearTimeout(tiempo)
	 }

     document.getElementById('t' + menu + 'o' + submenu).style.fontSize="8pt"
     document.getElementById('t' + menu + 'o' + submenu).style.fontWeight="bold"
     document.getElementById('t' + menu + 'td' + submenu).bgColor="#FFFFFF"
}


function quitarSub(menu, submenu) {
	  idmenu = menu
     document.getElementById('t' + menu + 'o' + submenu).style.fontSize="8pt"
     document.getElementById('t' + menu + 'o' + submenu).style.fontWeight="normal"
     document.getElementById('t' + menu + 'td' + submenu).bgColor="#AFAFD2"
      tiempo = setTimeout ('limpiar()', 300)

}

function quitar(imagen) {
	  idmenu = imagen
      tiempo = setTimeout ('limpiar()', 300)

}

function limpiar() {
     document.getElementById('menu' + idmenu).src='./imagenes_html/menu' + idmenu + '.gif'
	 if (document.getElementById('submn' + idmenu)) {
		 document.getElementById('submn' + idmenu).style.visibility = "hidden"
	 }
	 idmenu = 0
	 tiempo = 0
 }

 function ponMensaje(texto) {
	window.status = texto
	return true
 }

function abrir(pagina) {
	window.open(pagina, 'Vista', 'toolbar=no,width=770,height=580,top=0,left=0,screenX=0,screenY=0,menubar=no,scrollbars=yes,resizable=yes')
}

function imprimir(pagina) {
	window.open('./imprimir.php?xf=' + pagina, 'Vista', 'top=0,left=0,width=650,screenX=0,screenY=0,menubar=yes,toolbar=yes,scrollbars=yes,resizable=yes')
}

function abrirXY(pagina, x, y) {
	window.open(pagina, 'Vista', 'toolbar=no,width=' + x + ',height=' + y +',top=0,left=0,screenX=0,screenY=0,menubar=no,scrollbars=yes,resizable=yes')
}


