function getMail(host, name, obj_a) 
{
	obj_a.innerHTML = name+'@'+host;
	obj_a.href = 'mailto:'+name+'@'+host;
	return false;
}
