// ----------------------------------------------
// registrationcheck.js
// 2009-12-07 -vrem
//-----------------------------------------------
    function validateRegistration() {
	    
        if (document.form1.agreetoconditions.checked == false )  {
          alert("You need to agree to the Privacy Policy and Conditions Conditions of Use");
          document.form1.agreetoconditions.focus();
          document.form1.agreetoconditions.select();
          return false;
        } 
               
	    if (document.form1.password.value != document.form1.password2.value )  {
          alert("The password you entered twice was not the same word");
          document.form1.password.focus();
          document.form1.password.select();
          return false;
        } 
  	     
        document.form1.submit;
                
    }