function forms_onsubmit() {
	var valid = true;
if (document.contact.from.value=="")
{
alert("Please fill in your Email address");
valid = false;
}
if (document.contact.subject.value=="")
{
alert("Please fill in the subject line");
valid = false;
}
if (document.contact.emailbody.value=="")
{
alert("Please fill in the body of the Email");
valid = false;
}

return valid;
}
