// validation code
var f = new Validate();

function do_send(){
	if(do_validate()){
		document.form1.submit();
	}
}
function do_validate(){
	var error = false;
	var error_msg = 'ATENCIÓN - Debe rellenar correctamente el Formulario:\n\n';
	if(!f.isNotEmpty(document.formcontacto.nombre.value)){
		error = true;
		error_msg += 'Nombre está vacío\n';
	}
	if(!f.isNotEmpty(document.formcontacto.apellidos.value)){
		error = true;
		error_msg += 'Apellidos está vacío\n';
	}
	if(!f.isEMailAddr(document.formcontacto.email.value)){
		error = true;
		error_msg += 'Email es inválido\n';
	}
	if(!f.isNotEmpty(document.formcontacto.mensaje.value)){
		error = true;
		error_msg += 'Mensaje está vacío\n';
	}
	//if(!f.isNotEmpty(document.formcontacto.codigo.value)){
	//	error = true;
	//	error_msg += 'Código está vacío\n';
	//}
	if(error){
		alert(error_msg);
		return false;
	}else{
		return true;
	}
}
//--------------M-ail- O-cult-0 -
function leer_curreo(){
/* <![CDATA[ */
var p1='contacto';var p3='com';var p2='topinteractiva'; var p4='ilto:';
document.write('<a href=ma' + p4 + p1 + '@' + p2 + '.' + p3 + '>' + p1 + '@' + p2 + '.' + p3 + '</a>');
/* ]]&gt; */

}
