
function writeIt() {
var textfield = "";
if (document.inquiryform.firstname.value == "") {
textfield += "\n - First Name";
 }
if (document.inquiryform.lastname.value == "") {
textfield += "\n - Last Name";
 }
if (document.inquiryform.email.value == "") {
textfield += "\n - Email Address";
 }
if (document.inquiryform.telephone.value == "") {
textfield += "\n - Telephone Number";
 }
if (document.inquiryform.streetnumber.value == "") {
textfield += "\n - Street/Number";
 }
if (document.inquiryform.citytown.value == "") {
textfield += "\n - City/Town";
 }
if (document.inquiryform.postalcode.value == "") {
textfield += "\n - Postal Code";
 }
if (document.inquiryform.country.value == "") {
textfield += "\n - Country";
 }
if (document.inquiryform.subject.value == "") {
textfield += "\n - Subject";
 }
if (document.inquiryform.message.value == "") {
textfield += "\n - Message";
 }
if (textfield != "") {
textfield ="EMPTY\n" + "\n" + "You left the following fields blank:\n" + textfield + "\n" + "\nPlease fill out the fields before sending the form!";
alert(textfield);
return false;
}
else return true;
}
