function InsertEmail(t) {	
	var chardot = '&#46;';
	var charat = '&#64;';
	var commune = new Array('com', 'domain', 'last', 'first');

	document.write('<a href="ma');
	document.write('ilto:');
	document.write(commune[3]);
	document.write(chardot);
	document.write(commune[2]);
	document.write(charat);
	document.write(commune[1]);
	document.write(chardot);
	document.write(commune[0]);
	document.write('">');
	document.write(t);
	document.write('</a>');
}
