// JavaScript Document


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

 function check()
  {
 
   if (document.indform.emailid.value=="")
    {
   	 alert("Please enter value ")
	 document.indform.emailid.focus();
	 return(false);
	}
	else
	{
    		strvalue=document.indform.emailid.value
	  	var strpat=/^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;

	  	if (strpat.test(strvalue)==false)
		{
	 	alert("Enter valid email.")
	        document.indform.emailid.focus();
        	return(false);
		}
	}

  }   
