  <!--
            function validate(){
				var status=false;
				var field_val=document.form1.zip.value.replace(/[ ]/g, "");   
            if(isBlank(document.form1.firstname.value) || !isChar(document.form1.firstname.value))  {
				alert("Please Enter First Name");
				document.form1.firstname.select();
				status =  false;
            }
            else if(isBlank(document.form1.lastname.value) || !isChar(document.form1.lastname.value)) {
				alert("Please Enter Last Name");
				document.form1.lastname.select();
				status =  false;
            }
            else if(isBlank(document.form1.email.value) || !emailCheck(document.form1.email.value)){
				alert("Please enter Proper Email Address");
				document.form1.email.select();
				status =  false;
            }
            else if(document.form1.Month.selectedIndex == 0){
				alert("Please select your Birth Month");
				document.form1.Month.focus();
				status =  false;
            }
            else if(document.form1.Day.selectedIndex == 0) {
				alert("Please select your Birth Day");
				document.form1.Day.focus();
				status =  false;
            }
            else if(document.form1.Year.selectedIndex == 0) {
				alert("Please select your Birth Year");
				document.form1.Year.focus();
				status =  false;
            }
            else if(document.form1.gender.selectedIndex == 0) {
				alert("Please select your Gender");
				document.form1.gender.focus();
				status =  false;
            }
            else if(field_val.length<5  || isNaN(document.form1.zip.value)) {
				alert("Please enter Zip and It should be 5 or 6 Digits Long.");
				document.form1.zip.select();
				status =  false;
            }
            else{
				 status=true;
            }
            return status;
            }

            function showHide(){

            if (document.getElementById) {
           
            path2 = document.getElementById('coreg2').style;
            }
            else if (document.all) {
           
            path2 = document.all.coreg2.style;
            }

            if (document.forms['form1'].elements['gender'].selectedIndex != 0) {
          
            path2.display = "block";
            }

			if (document.getElementById) {
           
            path1 = document.getElementById('coreg1').style;
            }
            else if (document.all) {
           
            path1 = document.all.coreg1.style;
            }

            if (document.forms['form1'].elements['gender'].selectedIndex != 0) {
          
            path1.display = "block";
            }

            }

			function showAlert(){
			if(document.form1.email.value.indexOf("@aol.com")>0){
				alert("We have detected that you are using an AOL account.\n\n We have reports that many AOL users have had problems receiving registration email from many respected domains. If you have a different email address, we recommend that you use it for the signup process.\n\n If you don't have another email address, simply continue.");
				}
			}

			 function Selectimage(){
					//alert(document.form1.Offer6[1].value);
						var i;//document.form1.Offer6[0].checked = true;
					for (i=0; i < document.form1.elements.length; i++) {
					
					if (document.form1.elements[i].type == 'checkbox' && document.form1.elements[i].name!="SelectAllCheckBox") {
						 document.form1.elements[i].checked = true;
					}
					}

            }
			function showAlert(){
			if(document.form1.email.value.indexOf("@aol.com")>0){
				alert("We have detected that you are using an AOL account.\n\n We have reports that many AOL users have had problems receiving registration email from many respected domains. If you have a different email address, we recommend that you use it for the signup process.\n\n If you don't have another email address, simply continue.");
				}
			}


            // -->