// (c) 2000 Mark O'Neill - mark@i27.com
// ErrorMsg Default: "Password and confirmation mismatch"
function ConfirmPassword(objEdit1, objEdit2, ErrorMsg)
{
   var msg = ""
	
   if (objEdit1.value != objEdit2.value)
   {	
      msg = ErrorMsg;
   }

   return msg;
}
