﻿// JScript File
function gotoSite(dlObject) {

if (dlObject.selectedIndex != 0) {
url = dlObject.options[dlObject.selectedIndex].value;
window.open(url);
}

}


function gotoPage(dlObject) {

if (dlObject.selectedIndex != 0) {
url = dlObject.options[dlObject.selectedIndex].value;
window.location.href=url;
}

}

function openwin(htmlpage,mwidth,mheight)
{
retWin = window.open(htmlpage,'mywin', 'width='+mwidth+',height='+mheight +',toolbar=no,menubar=no,scrollbars=yes')
retWin.focus();
}



function showPhoto(Foto)
    {

   if (window.Pag && !(window.Pag.closed))
    window.Pag.close();

    //var Pag;
    Pag=open ('','Pag','toolbar=0,menubar=0,history=0,location=0,resizable=0,status=0,top=100,left=100');

    Pag.document.write("<html><title>Detalle Foto</title><body onclick='self.close()' topmargin=\"0\" leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\">");
    
    Pag.document.write("<script>");
    Pag.document.write("var i=0;");
    Pag.document.write("function resizeme() {");
    Pag.document.write("if (navigator.appName == 'Netscape') i=40;");
    Pag.document.write("if (document.images[0]) window.resizeTo(document.images[0].width +50, document.images[0].height+70-i);");
    Pag.document.write("if (document.images[0]) window.moveTo((screen.availWidth/2)-(document.images[0].width/2),(screen.availHeight/2)-(document.images[0].height/2)-10);");
    Pag.document.write("}");
    Pag.document.write("window.status='Done';");
    Pag.document.write("</script>");
    Pag.document.write("<table border=0 width=100% height=100% cellspacing=\"3\"><tr><td valign=middle align=\"center\">");
    Pag.document.write("<img id='fotoid' src='"+Foto+"'>");
    Pag.document.write("</td></tr></table>");
    Pag.document.write("</body></html>");
    Pag.document.write("<script>setTimeout('resizeme()',1000);</script>");
        
    }

function showMapa(){
openwin( 'mapa_sitio.html', '1028', '740' ); 
}

function showMapaPT(){
openwin( 'mapa_sitioPR.html', '1028', '740' ); 

}

function showMapaEN(){
openwin( 'mapa_sitioEN.html', '1028', '740' ); 
}

function showLinkMapa(url){
if (url.indexOf('ttp://') > 0) {
	window.open(url);
}
else {
	window.opener.location.href=url;
	window.opener.focus();
}

}