function validate()
{
if ((document.information.country.value=='' && document.information.other.value=='') || document.information.zip.value=='' || document.information.firstname.value=='' ||document.information.lastname.value=='' ||document.information.company.value=='' ||document.information.email.value=='' ||document.information.phone.value=='' ||document.information.address1.value=='' ||document.information.city.value=='' ||document.information.state.value=='')
	{
	alert("You must enter all required fields.");
	return false;
	}
return true;
}
