function validar_contacto(form) {
if (form.nombre.value == '') { alert('Complete Nombre.'); form.nombre.focus(); return false; }
if (form.apellido.value == '') { alert('Complete Apellido.'); form.apellido.focus(); return false; }
if (form.email.value.indexOf('@') < 0 || form.email.value.indexOf('.') < 0 || form.email.value.indexOf(',') > 0) { alert('Dirección de correo incorrecta.'); form.email.focus(); return false; }
if (form.email.value!=form.confirmaremail.value) { alert('Confirmación de correo incorrecta.'); form.email.focus(); return false; }
if (form.telefono.value == '') { alert('Complete Telefono.'); form.telefono.focus(); return false; }
if (form.asunto.value == '') { alert('Complete Asunto.'); form.asunto.focus(); return false; }
if (form.mensaje.value == '') { alert('Complete Mensaje.'); form.mensaje.focus(); return false; }
return true;
}

function validar_evaluacion(form) {
if (form.nombre.value == '') { alert('Complete Nombre.'); form.nombre.focus(); return false; }
if (form.apellido.value == '') { alert('Complete Apellido.'); form.apellido.focus(); return false; }
if (form.sitioweb.value == '') { alert('Complete Su Sitio Web.'); form.sitioweb.focus(); return false; }
if (form.email.value.indexOf('@') < 0 || form.email.value.indexOf('.') < 0 || form.email.value.indexOf(',') > 0) { alert('Dirección de correo incorrecta.'); form.email.focus(); return false; }
if (form.email.value!=form.confirmaremail.value) { alert('Confirmación de correo incorrecta.'); form.email.focus(); return false; }
if (form.telefono.value == '') { alert('Complete Telefono.'); form.telefono.focus(); return false; }
if (form.utilidad.value == '') { alert('Indique que utilidad que le dará al producto.'); form.utilidad.focus(); return false; }
if (form.visitas.value == '') { alert('Indique cuantas visitas recibe por mes.'); form.visitas.focus(); return false; }
return true;
}