function validar_contacto_en(form) {
	if (form.nombre.value == '') { alert('Type your name'); form.nombre.focus(); return false; }
	if (form.apellido.value == '') { alert('Type your lastname'); form.apellido.focus(); return false; }
	if (form.email.value == '') { alert('Bad email address'); form.email.focus(); return false; }
	if (form.confirmaremail.value == '') { alert('Bad email confirmation'); form.email.focus(); return false; }
	if (form.asunto.value == '') { alert('Type the subject'); form.asunto.focus(); return false; }
	if (form.mensaje.value == '') { alert('Type the message'); form.mensaje.focus(); return false; }
	/*
	if (form.contactarpor[1].checked==true) {
		if (form.telefono.value == '') { alert('You miss your phone number'); form.telefono.focus(); return false; }
		if (form.horario.value == '') { alert('What is the best time to contacting you?'); form.horario.focus(); return false; }
	}*/

}

function validar_contacto_sp(form) {
	if (form.nombre.value == '') { alert('Indique su nombre'); form.nombre.focus(); return false; }
	if (form.apellido.value == '') { alert('Indique su apellido'); form.apellido.focus(); return false; }
	if (form.email.value == '') { alert('Dirección de email incorrecta'); form.email.focus(); return false; }
	if (form.confirmaremail.value == '') { alert('Confirmacion de email incorrecta'); form.email.focus(); return false; }
	if (form.asunto.value == '') { alert('Indique el asunto'); form.asunto.focus(); return false; }
	if (form.mensaje.value == '') { alert('Escriba el mensaje'); form.mensaje.focus(); return false; }
	/*
	if (form.contactarpor[1].checked==true) {
		if (form.telefono.value == '') { alert('Ingrese su número telefónico'); form.telefono.focus(); return false; }
		if (form.horario.value == '') { alert('¿ En que horario lo podemos llamar ?'); form.horario.focus(); return false; }
	}*/

}
