function abremap(imprime){
	wl=window.open('mapa.htm','s','width=897,height=462');	
	setTimeout("if(wl)wl.focus()",300);
	if(imprime){
		setTimeout("wl.print()",600);
	}
	
}

function miratam(){
	if (self.innerWidth)
	{
		ancho = self.innerWidth;
		alto = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientWidth)
	{
		ancho = document.documentElement.clientWidth;
		alto = document.documentElement.clientHeight;
	}
	else if (document.body)
	{
		ancho = document.body.clientWidth;
		alto = document.body.clientHeight;
	}
	else return;
}

function lanza(){
qURL = 'main.htm'+document.location.search;
	//if(document.form1.maxi.checked){
		propiedades = "width='+ancho+',height='+alto+'+ancho+',channelmode,fullscreen=yes,toolbar=no,status=no,menubar=no,scrollbars=no,scrollbars=0,resizable=no,directories=no,location=no";
		window.open(qURL,"VENTANA",propiedades);
	/*}else{
		location.href = qURL;
	}*/
}

function wrmenu(){
	var htm = '';
	htm+='<div class="elem"><a href="/">Mar de Castilla</a></div>';
	htm+='<div class="elem"><a href="JavaScript:lanza()">Ver folleto</a></div>';
	htm+='<div class="elem"><a href="contactar.htm">Contactar</a></div>';
	htm+='<div class="elem"><a href="ubicacion.htm">Ubicación</a></div>';
	htm+='<div class="elem"><a href="fotos-urbanizacion-mar-de-castilla.php">Fotos</a></div>';
	htm+='<div class="elem"><a href="oferta.htm">Oferta del mes</a></div>';
	htm+='<br /><br /><div align="center"><img src="util/logomc.gif" width="110" height="105" /></div><br /><br /><br /><br />';
	document.write(htm);
}
		
