function EMailAdrHandler(name, domain, country)
{
	document.write('<a href=\"mailto:' + name + '@' + domain + '.' + country + '\">' + name + '@' + domain + '.' + country + '</a>');
}

function ClearTextfield(sId)
{
	document.getElementById(sId).setAttribute('value','');
}