/*Enviar formulario*/
function validar(reserva){
if (reserva.nombre.value == ""){
alert("Escriba su nombre");
return(false);
}
ingreso = new String() 
ingreso = this.reserva.email.value 

if (ingreso.length == 0) 
{ alert("Ingrese una direccion de mail!") 
return false 
} 

ingreso = this.reserva.email.value 

if (!ingreso.match("@")) 
{ alert("Ingrese el arroba @") 
return false 
} 
ingreso = this.reserva.email.value 

if (!ingreso.match(".")) 
{ alert("Ingrese el punto.") 
return false 
} 

return true 

}




