<td colspan="2"><?php printf(T_('Please enter your Username and e-mail address then click on the Send Password button.%s You will receive a new password shortly. Use the new password to access the site.'), '<br />'); ?></td>
} else if (r.exec(form.username.value) || form.username.value.length < 3) {
alert( "<?php printf( html_entity_decode(T_("Please enter a valid %s. No spaces, more than %d characters and containing only the characters 0-9,a-z, or A-Z")), html_entity_decode(T_('Please enter a user name.')), 2 );?>" );
form.username.focus();
} else if (form.email.value == "" ) {
alert( "<?php echo html_entity_decode(T_('Please enter a valid e-mail address.'));?>" );
form.email.focus();
} else if (form.email2.value == "" ) {
alert( "<?php echo html_entity_decode(T_('Please enter a valid e-mail address for the verification.'));?>" );
form.email2.focus();
} else if (form.password.value.length < 6) {
alert( "<?php echo html_entity_decode(T_('Please enter a valid password -- more than 6 characters with no spaces and containing only the characters 0-9, a-z, or A-Z'));?>" );
form.password.focus();
} else if (form.password2.value == "") {
alert( "<?php echo html_entity_decode(T_('Please verify the verification password.'));?>" );
form.password2.focus();
} else if ((form.password.value != "") && (form.password.value != form.password2.value)){
alert( "<?php echo html_entity_decode(T_('Password and verification do not match, please try again.'));?>" );
form.password.value="";
form.password2.value="";
form.password.focus();
} else if (r.exec(form.password.value)) {
alert( "<?php printf( html_entity_decode(T_("Please enter a valid %s. No spaces, more than %d characters and containing only the characters 0-9,a-z, or A-Z")), html_entity_decode(T_('Password:')), 6 );?>" );
form.password.focus();
} else if ((form.password.value != "") && (form.email.value != form.email2.value)){
alert( "<?php printf( html_entity_decode(T_('Email and verification do not match, please try again.')));?>" );
form.email.value="";
form.email2.value="";
form.email.focus();
} else if ( form.accept.checked == false) {
alert( "<?php printf( html_entity_decode(T_('You must accept the Privacy Policy and Disclaimer, to continue.')));?>" );