// JavaScript Document

function validateEmail( strValue ) {
	
	var rx = new RegExp("\\w+([-+.]\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*");
	var matches = rx.exec(strValue);
	return (matches != null && strValue == matches[0]);

}

