
function abrir_consulta(url)
{	
	var w=520;	var h=380;
	var left=(screen.width - w) / 2;
	var top=(screen.height - h) / 2;
	
	var win=window.open(url,"",",resizable=1,scrollbars=0,location=0,menubar=0,status=0,toolbar=0,width="+w+",height="+h+",left="+left+",top="+top+",screenX="+left+",screenY="+top);
	win.focus();
	
	
}
function abrir_foto(url)
{	
	var w=500;	var h=400;
	var left=(screen.width - w) / 2;
	var top=(screen.height - h) / 2;
	
	var win=window.open(url,"",",resizable=1,scrollbars=1,location=0,menubar=0,status=0,toolbar=0,width="+w+",height="+h+",left="+left+",top="+top+",screenX="+left+",screenY="+top);
	win.focus();
	
	
}
function abrir_mapa(url)
{
	var w=600;	var h=500;
	var left=(screen.width - w) / 2;
	var top=(screen.height - h) / 2;
	
	var win=window.open(url,"",",resizable=1,scrollbars=1,location=0,menubar=0,status=0,toolbar=0,width="+w+",height="+h+",left="+left+",top="+top+",screenX="+left+",screenY="+top);
	win.focus();
	
	
}
function abrir_promo(url)
{
	window.open(url,"",",scrollbars=yes,resizable=yes,width=450,height=150"); 
}
function abrir_pano(url)
{
	var w=900;	var h=600;
	var left=(screen.width - w) / 2;
	var top=(screen.height - h) / 2;
	
	var win=window.open(url,"",",resizable=1,scrollbars=0,location=0,menubar=0,status=0,toolbar=0,width="+w+",height="+h+",left="+left+",top="+top+",screenX="+left+",screenY="+top);
	win.focus();
}
function abrir_gps(carpetaweb)
{
	var w=900;	var h=600;
	var left=(screen.width - w) / 2;
	var top=(screen.height - h) / 2;
	
	var win=window.open("/cabs/googlemaps.asp?id="+carpetaweb,"",",resizable=1,scrollbars=1,location=0,menubar=0,status=0,toolbar=0,width="+w+",height="+h+",left="+left+",top="+top+",screenX="+left+",screenY="+top);
	win.focus();
}
function togglePromo(id)
{
	var box = document.getElementById(id);
	if(box.style.display == "")
		box.style.display = "block";
	else
		box.style.display = "";
}
