// JavaScript Document

var VentanaOpen=null;

function ampliar(cual){	
	ancho=600;
	alto=330;
	der=(screen.width-ancho)/2;
	Top=(screen.height-ancho)/2;
	windowprops='width='+ancho+',height='+alto+',top='+Top+',left='+der+',toolbar=no,location=no,directories=no,status=no,scrollbars=no,menubar=no';
	VentanaOpen=window.open(cual+".html","Detalle",windowprops);
	comprobarVentana();
}
function localizacion(){
	ancho=600;
	alto=330;
	der=(screen.width-ancho)/2;
	Top=(screen.height-ancho)/2;
	windowprops='width='+ancho+',height='+alto+',top='+Top+',left='+der+',toolbar=no,location=no,directories=no,status=no,scrollbars=no,menubar=no';
	VentanaOpen=window.open("localizacion.html","Localizacion",windowprops);
	comprobarVentana();
}
function patrocinador(){
	ancho=600;
	alto=330;
	der=(screen.width-ancho)/2;
	Top=(screen.height-ancho)/2;
	windowprops='width='+ancho+',height='+alto+',top='+Top+',left='+der+',toolbar=no,location=no,directories=no,status=no,scrollbars=no,menubar=no';
	VentanaOpen=window.open("patrocinador.html","Patrocinador",windowprops);
	comprobarVentana();
}
function comprobarVentana(){
if(VentanaOpen != null){
		VentanaOpen.focus();
	}
}