eCount=0;
eMessage="";
function validateinput(form){
eMessage= "Please correct the following error(s).\n\n";
if(!checkSelect(form.classified,1,'Classified Type'))
eCount = eCount + 1;
if(!checkSelect(form.metro,1,'Metro Area'))
eCount = eCount + 1;
if(!checkText(form.title.value,1,'Classified Ad Title',5,7,'!@#$&* :;,.?%=+-_',0))
eCount = eCount + 1;
if(!checkDescription(form.description.value,1,'Classified Ad Description',0))
eCount = eCount + 1;
if(!checkText(form.formCode.value,1,'Word Verification',6,7,"",0))
eCount = eCount + 1;
}
