<!--
function VerifyData(Quote) {
formOk = true;
errorMsg = "";

if (Quote.budget.value == "") {
formOk = false;
errorMsg = "Please enter all the information";
}

if (Quote.start_date.value == "") {
formOk = false;
errorMsg = "Please enter all the information";
}

if (Quote.zcode.value == "") {
formOk = false;
errorMsg = "Please enter all the information";
}

if (Quote.requirement.value == "") {
formOk = false;
errorMsg = "Please enter all the information";
}

if (Quote.mailid.value == "") {
formOk = false;
errorMsg = "Please enter all the information";
}

if (Quote.phone.value == "") {
formOk = false;
errorMsg = "Please enter all the information";
}

if (Quote.urname.value == "") {
formOk = false;
errorMsg = "Please enter all the information";
}
if (Quote.coname.value == "") {
formOk = false;
errorMsg = "Please enter all the information";
}

if (Quote.Des.value == "") {
formOk = false;
errorMsg = "Please enter all the information";
}

if (Quote.cosize.value == "") {
formOk = false;
errorMsg = "Please enter all the information";
}

if (!formOk) {
alert(errorMsg);
}

return formOk;
} 
//-->







