﻿// Función para mostrar el menu desplegable
var t;

function activar()
{
	clearTimeout(t);
}

function mostrar_catalogo()
{
	var capa = document.getElementById('c_catalog');
    capa.style.display = "block";
}

function ocultar_submenus()
{
	var capa5 = document.getElementById('c_catalog');
    capa5.style.display = "none";
}
function retardo()
{
	t=setTimeout('ocultar_submenus()',400);
}

// fin del menú desplegable
//popup's imagenes

function PopUp(img){
	foto1= new Image();
	foto1.src=(img);
	Control(img);
}

function Control(img){
	if((foto1.width!=0)&&(foto1.height!=0)){
		verFoto(img);
	}
	else{
		funcion="Control('"+img+"')";
		intervalo=setTimeout(funcion,20);
	}
}

function verFoto(img){
	ancho=foto1.width;
	alto=foto1.height;
	anchoPantalla=screen.width;
	altoPantalla=screen.height;
	cadena="width="+ancho+",height="+alto+",left="+(anchoPantalla-foto1.width)/2+",top="+(altoPantalla-foto1.height)/2;
	ventana=window.open(img,"",cadena);
	ventana.document.writeln ('<html>');
	ventana.document.writeln ('<head>'); 
    ventana.document.writeln ('<title></title>');
	ventana.document.writeln ('</head>');
	ventana.document.writeln ('<body bgcolor="#000000" style="margin:0px">');
	ventana.document.writeln ('<img src="'+img+'" border=0>');
	ventana.document.writeln ('</body>');
	ventana.document.writeln ('</html>');
}