// Validacion de forma de contacto papalote  //
function Validar(form)
{
  if (form.nombre.value == "")
  { alert("Escribe tu nombre"); form.nombre.focus(); return; }
  
  if (form.email.value == "")
  { alert("Escribe tu correo."); form.email.focus(); return; }

  
   if (form.comentario.value == "")
  { alert("Escribe tu comentario."); form.comentario.focus(); return; }

  if (form.email.value.indexOf('@', 0) == -1 ||
     form.email.value.indexOf('.', 0) == -1)
	{ alert("El email NO es valido"); form.email.focus(); return; }

  form.submit();
}