function ahp_formcheck(){
return true;
			invalidChars = " '^%#()+=|!/:,;\"<>"


missinginfo = ""
missingcomment = "Please correct the following...\n\n"
proceed = "yes"

if(document.book.office.value == ""){
missinginfo += "-- Please select a showroom location\n"
proceed = "no"
}

if(document.book.your_firstname.value == ""){
missinginfo += "-- Your First name\n"
proceed = "no"
}
if(document.book.your_lastname.value == ""){
missinginfo += "-- Your Last name\n"
proceed = "no"
}
if(document.book.your_address.value == ""){
missinginfo += "-- Your Address Information\n"
proceed = "no"
}
if(document.book.your_city.value == ""){
missinginfo += "-- Your City Information\n"
proceed = "no"
}
if(document.book.your_state.value == ""){
missinginfo += "-- Your State Information\n"
proceed = "no"
}
if(document.book.your_zip.value == ""){
missinginfo += "-- Your Zip Code\n"
proceed = "no"
}

if(document.book.your_telephone.value.length < 10 && document.book.your_telephone.value.length > 0){
diff = 10-(document.book.your_telephone.value.length);
missinginfo += "-- Missing "+diff+" characters from Your Phone #\n"
proceed = "no"
diff = "";
}

if(document.book.your_telephone.value == '' && document.book.your_email.value == ''){
missinginfo += "-- Please provide either Your phone number or email address\n"
proceed = "no"
}

if(document.book.their_firstname.value == ""){
missinginfo += "-- Their First name\n"
proceed = "no"
}
if(document.book.their_lastname.value == ""){
missinginfo += "-- Their Last name\n"
proceed = "no"
}
if(document.book.their_address.value == ""){
missinginfo += "-- Their Address Information\n"
proceed = "no"
}
if(document.book.their_city.value == ""){
missinginfo += "-- Their City Information\n"
proceed = "no"
}
if(document.book.their_state.value == ""){
missinginfo += "-- Their State Information\n"
proceed = "no"
}
if(document.book.their_zip.value == ""){
missinginfo += "-- Their Zip Code\n"
proceed = "no"
}

if(document.book.their_telephone.value.length < 10 && document.book.their_telephone.value.length > 0){
diff = 10-(document.book.their_telephone.value.length);
missinginfo += "-- Missing "+diff+" characters from Their Phone #\n"
proceed = "no"
diff = "";
}


if(document.book.their_telephone.value == '' && document.book.their_email.value == ''){
missinginfo += "-- Please provide a Referral phone number or email address\n"
proceed = "no"
}

/*if(document.book.timeFrame.options[document.book.timeFrame.selectedIndex].value == ""){
missinginfo += "-- Estimated time to build\n"
proceed = "no"
}*/


if(proceed == "no"){
alert(missingcomment+missinginfo)
return false
}
}
