function validate_data(){
if(document.getElementById("name").value == ""){alert("Please Provide Your Name");document.getElementById("name").focus();document.getElementById("name").select();return false;}
else if(document.getElementById("phone").value == ""){alert("Please Provide Your Phone No.");document.getElementById("phone").focus();document.getElementById("phone").select();return false;}
else  if(!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(document.forms[0].email.value))){document.forms[0].email.focus();alert("Invalid Email ID. Kindly enter the correct ID.");return false;}
else if(document.getElementById("interested").value == "- Please Select -"){alert("Please Select the Interested Service");document.getElementById("interested").focus();return false;}
else if(document.getElementById("comments").value == ""){alert("Please Enter Your Comments");document.getElementById("comments").focus();document.getElementById("comments").select();return false;}
else if(document.getElementById("seccode").value!=document.getElementById("rnum").value){alert("Ops! You Need to Enter the Security Code.");document.getElementById("seccode").value == "";document.getElementById("seccode").focus();document.getElementById("seccode").select();		return false;}}
