function fct_mailTo(pDomain,pExt,pUser) {
	document.location.href='mai' + 'lto:' + pUser + '@' + pDomain + '.' + pExt;
}

function write_Email(pDomain,pExt,pUser,pClass) {

	document.write('<a class="'+pClass+'" href="mai');
	document.write('lto:' + pUser + '@');
	document.write(pDomain);
	document.write('.' + pExt + '">');
	document.write(pUser + '@');
	document.write(pDomain);
	document.write('.' + pExt);
	document.write('</a>');

}

function mhHover(tbl, cls)
{
	var t = document.getElementById(tbl);
	var t2 = document.getElementById(tbl + "Icon");
	var t3 = document.getElementById(tbl + "Icon2");
	if (t == null) return;
	t.className = cls;
	if (t2 == null) return;
	t2.className = cls;
	if (t3 == null) return;
	t3.className = cls;
}