function checkValid(frm) { with(frm) { if(!checkValidNull(vFirstName,"Please Enter First Name")) return false; if(!checkValidNull(vLastName,"Please Enter Last Name")) return false; if(!checkValidNull(vEmail,"Please Enter Email")) return false; if(isValidEmail(vEmail.value) != 0) { alert(isValidEmail(vEmail.value)); vEmail.focus(); return false; } if(vEmail.value!=vreEmail.value) { alert("Please check your Email Address"); vreEmail.focus(); return false; } if(!checkValidNull(vCountryCode ,"Please Select Country")) return false; if(!checkValidNull(iPreferredStayId,"Please Select Preferred Stay")) return false; if(!checkValidNull(iEventId,"Please Select Preferred arrival")) return false; } } function pollwin() { pollwindow=window.open('','pollwindow','top=0,left=0,status=no,toolbars=no,scrollbars=yes,width=600,height=450,maximize=no,resizable'); }