function validate_form ()
{
    valid = true;

    if 
	( 
	(document.contact.Name.value == " Name") ||
	(document.contact.LastName.value == " Last Name") ||
	(document.contact.Email.value == " Email") ||
	(document.contact.Phone.value == " Phone") ||
	(document.contact.Business.selectedIndex  == 0) ||
	(document.contact.Found.selectedIndex == 0)
	 )
    {
        alert ( "Please fill out all items on the form." );
        valid = false;
    }

    return valid;
}