   <!-- Hide script from older browsers
						function validEmail(email) {
                invalidChars = " /:,;"

                if (email == "") {return false;}						// cannot be empty
                
                for (i=0; i<invalidChars.length; i++) {	// does it contain any invalid characters?
                	badChar = invalidChars.charAt(i)
                	if (email.indexOf(badChar,0) > -1) {return false;}
                }
                atPos = email.indexOf("@",1)			// there must be one "@" symbol
                if (atPos == -1) {return false;}
								
                if (email.indexOf("@",atPos+1) != -1) {return false;}	// and only one "@" symbol
                
                periodPos = email.indexOf(".",atPos)
                if (periodPos == -1) {return false;}					// and at least one "." after the "@"
                
                if (periodPos+3 > email.length)	{return false;}		// must be at least 2 characters after the "."
                
                return true;
             }

             function isNum(passedVal) {					// Is this a number?
                if (passedVal == "") {return false;}
                
                
                for (i=0; i<passedVal.length; i++) {
                	if (passedVal.charAt(i) < "0") {return false;}
                	if (passedVal.charAt(i) > "9") {return false;}
                }
                return true;
              }

              function validZip(inZip) {					// Is this a valid Zip code?
                if (inZip == "") {return true;}
                if (isNum(inZip)) {return true;}			// Check if Zip is numeric
                
                
                return false;
              }

              function submitIt(vForm) {
                vForm.GenerateNewPassword.value='0';

                var xyz;
                // check to see if the email's valid
                if (!validEmail(vForm.emailAddr.value)) {
                	alert("Invalid email address. Please re-enter.");
                	vForm.emailAddr.focus();
                	vForm.emailAddr.select();
                	return false;
                }

           
								if (vForm.FormOptions && vForm.ConfEmail){
									if(vForm.FormOptions.value=="conf" && (vForm.emailAddr.value != vForm.ConfEmail.value)) {
									alert("The email addresses do not match. Please re-enter.")
									vForm.ConfEmail.focus();
									vForm.ConfEmail.select();
									return false;
									}
								}

            // If we made it to here, everything's valid, so return true

								xyz='http://letters.beachbody.com/p/BeachBody/BeachbodyPreferenceCenter';


            		vForm.action=xyz;

            		return true;
            	}

            
            // End hiding script -->
