function is_email(value){var rx=/^[\w\.-]+@[\w\.-]+\.\w+$/i;return rx.test(value);}

