// EMAIL.JS v4 03-06-2007
// www.hotelsatglance.com

// check email address: returns true if both exist
function IsValidEmail(str) {
   return (str.indexOf(".") > 2) && (str.indexOf("@") > 0);
}

