function checkform(theform){


if(theform.Name.value.length ==0){
alert("Name is required");
theform.Name.focus();
theform.Name.select();
return false;
}

if(theform.City.value.length ==0){
alert("City is required");
theform.City.focus();
theform.City.select();
return false;
}

if(theform.Email.value.length ==0){
alert("Email is required");
theform.Email.focus();
theform.Email.select();
return false;
}

if(theform.Question.value==""){
alert("Question is required");
theform.Question.focus();
theform.Question.select();
return false;
}


if(theform.Phone.value==""){
alert("Phone No. is requred");
theform.Phone.focus();
theform.Phone.select();
return false;
}

}
