<!--
function check(coloquote) {
if (coloquote.cust_name.value=="") {
alert("Please enter your name.");
return false; }
if (coloquote.cust_email.value=="") {
alert("Please enter your email address.");
return false; }
if (coloquote.phone.value=="") {
alert("Please provide a phone number.");
return false; }
if (coloquote.rackspace_requirements.value=="") {
alert("Please specify the number of U you will require, or the size and quantity of private cabinets you will require.");
return false; }
if (coloquote.internet_requirements.value=="") {
alert("Please specify your Internet Bandwidth requirements.");
return false; }
if (coloquote.additional_connectivity_requirements.value=="") {
alert("If you do not have any additional Connectivity Requirements, please enter- NONE.");
return false; }
if (coloquote.power_requirements.value=="") {
alert("if you do not know you power requirements at this time, please enter- NOT KNOWN.");
return false; }
if (coloquote.hear_about_us.value=="") {
alert("Please let us know how you heard about us.");
return false; }
else { return true; }
}
//-->