// Email Field Match Javascript
// copyright 8 October 2006, by Paul Yeager

// You have permission to copy and use this javascript provided that
// the content of the script is not changed in any way.

function matchEmail(addr1,addr2,db) {
if (addr1 == addr2) {
   return true;
}
else {
   if (db) alert('email addresses do not match!');
   return false;
}
}
