/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function validateForm(form){
  var YD = YAHOO.util.Dom;
  if(!checkForm(form))return;
  if(YD.get("pass").value != YD.get("rpass").value){
    alert("Password did not match.");
    YD.get("pass").focus();
    return;
  }
  form.submit();
}

