function	validateemail( email ) {
	var b = /^[^@\s]+@[^@\.\s]+(\.[^@\.\s]+)+/;
	return b.test(email);
}

