<!--


function CheckForm () {
		
	if (document.form1.nombre.value==""){
		alert("Por favor ingrese su nombre");
		document.form1.nombre.focus();
		return false; }


	if (document.form1.email.value==""){
		alert("Por favor ingrese su e-mail");
		document.form1.email.focus();
		return false; 
	}else{
		if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.form1.email.value)){
		}else{
		alert("La dirección de e-mail no es válida.")
		document.form1.email.focus();
		return false; }
	}


	return true;
}



//script por Tunait 
var ventana 
var cont=0 
var titulopordefecto = "Brisas del Este" //texto por defecto a mostrar en la barra de título en caso de omitir el argumento titulo 

function abrirImagen(cual,titulo) 
{ 
if(cont==1){ventana.close();ventana=null} 
if(titulo==null){titulo=titulopordefecto} 
ventana=window.open('','ventana','resizable=yes,scrollbars=no,width=700,height=400') 
ventana.document.write('<html><head><title>' + titulo + '</title><meta http-equiv="imagetoolbar" content="no"></head><body style="overflow:hidden" marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" scroll="no" onUnload="opener.cont=0"><table width="100%" height="100%" cellspacing="0" cellpadding="0" border="0"><tr><td><a href="javascript:window.close()"><img src="' + cual + '" onLoad="opener.redimensionar(this.width, this.height)" border="0" style="margin: auto;"/></a></td></tr></table></body></html>') 
ventana.document.close() 
cont++ 
} 
function redimensionar(ancho,alto) 
{ 
ventana.resizeTo(ancho+12,alto+52) 
ventana.moveTo((screen.width-ancho-50)/2,(screen.height-alto)/2) //centra la ventana. Eliminar si no se quiere centrar el popup 
} 


//-->