<!--
function isEmailAddress (string) 
{
		//var addressPattern = /^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/;
		//return addressPattern.test(string);
		var Tmps=string;
		if(Tmps.indexOf("@") < 0)
		{
			return false;
		}
		else if(Tmps.indexOf(".") < 0)
		{
			return false;
		}
		else
		{
			return true;
		}
}
//-->