Contact Life Solutions

For bookings/Contacts and more info:

Email:info@Life-teaching.com

Tel: 07908336155


Click here for The Life Solutions Book Form
 
 
//function to precheck some of the checkboxes function ch(fld){ if(fld eq "YES"){ return "CHECKED='checked'"; }else{ return "" ; } } /** function to check email * Tests passed value to see if it is a valid e-mail address (supports subdomain nesting and new top-level domains). * Update by David Kearns to support ' * SBrown@xacting.com pointing out regex still wasn't accepting ' correctly. * * @param str The string to check. (Required) * @return Returns a boolean. * @author Jeff Guillaume (jeff@kazoomis.com) * @version 2, August 15, 2002 */ function IsEmail(str) { //supports new top level tlds if (REFindNoCase("^['_a-z0-9-]+(\.['_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*\.(([a-z]{2,3})|(aero|coop|info|museum|name))$",str)) return TRUE; else return FALSE; }