// JavaScript Document
/*function ValidarFormularioContactos()
{
	if (!validar('document.getElementById("newslater")','mail','[{4|Mail}]','mo'))
	{
		return false;
	}
	
	document.getElementById("newslater").submit();
	
	return false;
}*/
function validarEmail(id_mail, idFrm)
{
	valor = document.getElementById(id_mail).value;
	if (/\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+/.test(valor))
	{
		//alert("La dirección de email " + valor + " es correcta.");
		document.getElementById(idFrm).submit();
	}
	else
	{
	  alert("The email address is not correct.");
	  return (false);
	 }
}

function borrarm1()
{
	document.getElementById('mailn').value= " ";
	
//	this.value='';
}

function borrar()
{
	document.getElementById('mail').value= " ";
	document.getElementById('mail_pie').value= " ";
//	this.value='';
}


