function validate()
{
if ((document.contact_form.fullname.value=="")||
(document.contact_form.email_address.value=="")||
(document.contact_form.zipcode.value==""))
{
alert ("Please fill out the required fields!")
return false
}
}