var t;

function activar()
{
	clearTimeout(t);
}

function ocultar_razon()
{
	var capa1 = document.getElementById('razon');
    capa1.style.visibility = "hidden";
}

function mostrar_razon()
{
	var capa = document.getElementById('razon');
    capa.style.visibility = "visible";
}


function mostrar_somos()
{
	var capa = document.getElementById('somos');
    capa.style.visibility = "visible";
}

function ocultar_somos()
{
	var capa1 = document.getElementById('somos');
    capa1.style.visibility = "hidden";
}

function retardo_somos()
{
	t=setTimeout('ocultar_somos()',800);
}

var m;
function subir_bajar(dir)
{
//alert("o")
	if (dir==0)
	{
		d=document.getElementById("scroll_v");
		d.scrollTop=d.scrollTop-1;

	}
	else
	{

		d=document.getElementById("scroll_v");
		d.scrollTop=d.scrollTop+1;
	}
	m=setTimeout("subir_bajar("+dir+")",25);
//	alert(d)
}

function parar()
{

clearTimeout(m);



}


function subir_bajar_prod_v(dir)
{
//alert("o")
	if (dir==0)
	{
		d=document.getElementById("scroll_v_productos");
		d.scrollTop=d.scrollTop-1;

	}
	else
	{

		d=document.getElementById("scroll_v_productos");
		d.scrollTop=d.scrollTop+1;
	}
	m=setTimeout("subir_bajar_prod_v("+dir+")",25);
//	alert(d)
}




var h;
function izquierda_derecha(dir)
{
//alert("-->" + dir)
	if (dir==1)
	{
		d=document.getElementById("scroll_h");
		d.scrollLeft=d.scrollLeft-1;
		
	}
	else
	{

		d=document.getElementById("scroll_h");
		d.scrollLeft=d.scrollLeft+1;

	}
/*h=setTimeout("izquierda_derecha("+dir+")",25);
*/
h=setTimeout("izquierda_derecha("+dir+")",25);

//	alert(d)
}

function parar2()
{


clearTimeout(h);


}


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+20+60+60;
	alto=foto1.height+20+70+60;
	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 style="margin:10px;background-color:#e6e6e6;">');
	ventana.document.writeln ('<table border=0 width="100%" cellspacing=0 cellpadding=0><tr><td height=70 align=left valing=top><img src="http://www.instalacioneshipicas.com/images/logo_equisan_fotos.jpg" border=0></td></tr>');
	ventana.document.writeln ('<tr><td align=center><img src="'+img+'" style="border:2px #e5e5e5 solid;" border=0></td></tr>');
	ventana.document.writeln ('<tr><td height=60 align=right><a href="#" onclick="window.close()"><img src="http://www.instalacioneshipicas.com/images/boton_cerrar_fotos.jpg" border=0></a></td></tr></table>');
	ventana.document.writeln ('</body>');
	ventana.document.writeln ('</html>');
}