function ValidateContactForm1()
{
    var name = document.ContactForm.name;
    var email = document.ContactForm.email;
    var phone = document.ContactForm.phone;
    var message = document.ContactForm.message;
    
    if (name.value == "")
    {
        window.alert("Please enter your name.");
        name.focus();
        return false;
    }
    if (email.value == "")
    {
        window.alert("Sorry, but you must enter an Email address.");
        email.focus();
        return false;
    }
    if (email.value.indexOf("@", 0) < 0)
    {
        window.alert("Ooops, looks like you forgot the @ sign from your Email address. Please check & try again");
        email.focus();
        return false;
    }
    if (email.value.indexOf(".", 0) < 0)
    {
        window.alert("Ooops, looks like you forgot the '.' from your email address. Please check & try again.");
        email.focus();
        return false;
    }
    if (message.value == "")
    { 
     	window.alert("Oops! You left a blank message. Please try again.");
     	message.focus();
     	return false;
    }
	return true
}   