// JavaScript Document


function popIt() {
window.open('', 'formwin', 'scrollbars=auto,height=400,width=430,status=no');
document.vote.submit();

}

function validar()
{

if (correo.value.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)| (\.info)|(\.biz)|(\..{2,2}))$)\b/gi))
	{
	insertarx('?pagina=8&correo=');
	} 
else {
   alert("<%=alerta%>");
     }
}
function insertarx (url)
{
var text=correo.value;
window.location.href=url+text+'#newsletter';
}

function timeout()
{
	document.getElementById('guia').style.visibility='hidden';
    document.getElementById('ayuda').style.visibility='hidden';
}
function guia(idproducto,top,lang)
{
	if(idproducto!='')
	{
	    parent.frames['guiacont'].document.getElementById('tabla').style.visibility='hidden';
	//	parent.guiacont.location.href='guia.asp?add=1&idproducto='+idproducto+'&lang='+lang;       
        document.getElementById('guiacont').src='guia.asp?add=1&idproducto='+idproducto+'&lang='+lang;
	 	document.getElementById('guia').style.visibility='visible';
		document.getElementById('guia').style.top=top;
		
		setTimeout("timeout()", 1200);	
	}
else
	{
       
		document.getElementById('guia').style.visibility='visible';
		document.getElementById('guia').style.top=top;
	}
}

function abrirMapa(idioma){
	document.getElementById('elMapa').src="gmap2.asp?idvista=48&size=880&lang="+idioma;
	document.getElementById('mapabig').style.visibility='visible';
}
function abreVentana(url,ptop,pleft,ancho,alto){
	if (ptop==0 && pleft==0){ //centrarla
		ptop=parseInt((parseInt(screen.height)-alto)/2);
		pleft=parseInt((parseInt(screen.width)-ancho)/2);
	}
	window.open(url,"","top="+ptop+",left="+pleft+",width="+ancho+",height="+alto+",statusBar=no,resize=no");
}


