function CheckEmailFormat(strString) 
{ 
	//var REG = /^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/;
	
	var REG = /[a-zA-Z0-9_\-']+([-+.][a-zA-Z0-9_\-']+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/;

	if (strString.match(REG)) 
	{ 
		return true;
	} 
	else 
	{ 
		return false;
	} 
}
