//Author: Rafiq Ahmed
//Email: support@sana.cc
										 function jsItValidate1(form) {var nRet = 1;var sFb = "";

if(confirm("Submit form now?"))
{if(form.name.value=="") {nRet = 0;if(sFb == "") {sFb = "[NAME] must be correctly filled"}}
if(form.company_name.value=="") {nRet = 0;if(sFb == "") {sFb = "[COMPANY] must be correctly filled"}}
if(form.address1.value=="") {nRet = 0;if(sFb == "") {sFb = "[ADDRESS] must be correctly filled"}}
if(form.city.value=="") {nRet = 0;if(sFb == "") {sFb = "[CITY] must be correctly filled"}}
if(form.zip.value=="") {nRet = 0;if(sFb == "") {sFb = "[ZIP] must be correctly filled"}}
if(form.comments.value=="") {nRet = 0;if(sFb == "") {sFb = "Please enter your comments & Questions"}}
if(form.email.value.indexOf('@',0)==-1) {nRet = 0;if(sFb == "") {sFb = "[EMAIL] must be correctly filled."}}
if(nRet == 0) {alert(sFb);return false}else {return true}}else {return false}}







