function checkContactUs()
{
if(document.getElementById("email").value.length < 4) {
alert("Please enter your email address.")
return false;
}
}
