
<!--

	
function validate() {

if (document.contactproject.customerproduct.value=="Please select from the dropdown list") {
alert("Please select Product or service that you want to sell, from the dropdown list.");
return false;
}
if (document.contactproject.solution.value=="Please select from the dropdown list") {
alert("Please select Ecommerce solution you are interested in, from the dropdown list.");
return false;
}
if (document.contactproject.services.value=="Please select from the dropdown list") {
alert("Please select Ecommerce services you are interested in, from the dropdown list.");
return false;
}
if (document.contactproject.fullname.value.length==0) {
alert("Please enter your Full Name.");
return false;
}
if (document.contactproject.companyname.value.length==0) {
alert("Please enter name of the Company you represent.");
return false;
}
if (document.contactproject.email.value.length==0) {
alert("Please enter your email address.");
return false;
}
if (document.contactproject.telephone.value.length==0) {
alert("Please provide your telephone number so our staff can contact you.");
return false;
}
if (document.contactproject.besttimecall.value.length==0) {
alert("Please tell us when is a good time to contact you.");
return false;
}
document.contactproject.submit()
return true;
}

//-->

