// JavaScript Document

function chequearCorreo()
{
	correo1=document.getElementById("correoID").value;
	clave="@";
	if(!correo1.match(clave))
	{
		alert("Enter your email");
		elemento1=document.getElementById('pagina1');
		elemento1.action="contact.php";
	}

}


