function ValidateEmailAddress(sId)
{
	var sValue;
	
	sValue = document.all[sId].value;
	if(0 < sValue.length)
	{
		return sValue.indexOf("@") >= 0 && sValue.indexOf(".") >= 0;
	}
	else
	{
		return true;
	}
}