// JavaScript Document
function validateForm()
{
    valid = true;

   alert ( "Here now" );
    if ("" == document.forms.ContactForm.name.value)
    {

        alert ( "Please fill in Your Name" );
        valid = false;
    }
	    if ("" == document.forms.ContactForm.tel.value )
    {

        alert ( "Please fill in Your Telephone Number" );
        valid = false;
    }
	    if ("" == document.forms.ContactForm.email.value )
    {

        alert ( "Please fill in Your E-Mail" );
        valid = false;
    }
		    if ( "" == document.forms.ContactForm.msg.value  )
    {

	    alert ( "Please fill in your Message" );
        valid = false;
    }

    return valid;
}
