function trim(s)
{
	var l=0; var r=s.length -1;
	while(l < s.length && s[l] == ' ')
	{	l++; }
	while(r > l && s[r] == ' ')
	{	r-=1;	}
	return s.substring(l, r+1);
}

function validate_form ( )
{
	var emailFilter=/^.+@.+\..{2,3}$/;
	valid = true;
	var errorstr = "";
    if ( trim(document.contact_form.contact_name.value) == "" )
        {
			errorstr += "Please Enter Your Name \n";
        }
	if (!(emailFilter.test(document.contact_form.contact_email.value)))
		{ 
			errorstr +=  "Please Enter a Valid Email Address\n";
		}
    if ( trim(document.contact_form.contact_message.value) == "" )
        {
			errorstr += "Please Enter a Message \n";
        }
    if (errorstr != "")
		{
			valid = false;
			alert(errorstr);
	    }
     return valid;
}
