Validar(this) en el onsubmit
Código HTML:
<form name="reserva" method="post" action="reserva.php" onsubmit="return Validar(this)">
luego en el script
Código:
Validar(esto)
{
// y aqui reemplaza reserva, por esto
//ejemplo:
var fecha1form=esto.mes.value+"/"+esto.dia.value+"/"+esto.ano.value;
//...
}
suerte!!!