
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function chekIt() {
 if (document.forms[0].email.value == "") {
 alert("Please enter your e-Mail Id");
 document.forms[0].email.focus(); }
 else { document.forms[0].submit() ;
 }
}

function chekMailId() {
 var MailId = document.forms[0].email;
 var Attu = MailId.value.indexOf("@");
 var Pottu = MailId.value.lastIndexOf(".");
 var Gaali = MailId.value.indexOf(" ");
 if ((Attu < 1) || ((Gaali > -1) && (Gaali < MailId.value.length-1)) || (Pottu <= Attu+1) || (Pottu == MailId.value.length-1)) {
 alert("Please enter valid e-mail id");
 document.forms[0].email.focus();
 document.forms[0].email.select();
 }
}

-->

