
function abrir_consulta(url)
{	
	var w=520;	var h=350;
	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();
	
	//window.open(url,"",",scrollbars=YES,width=520,height=350"); 
}
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();
	
	//window.open(url,"",",scrollbars=yes,resizable=yes,width=500,height=400"); 
}
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();
	
	//window.open(url,"",",scrollbars=yes,resizable=yes,width=600,height=500"); 
}
function abrir_promo(url)
{
	window.open(url,"",",scrollbars=yes,resizable=yes,width=450,height=150"); 
}
function abrir_gps(carpetaweb)
{
	var w=600;	var h=500;
	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();
}