function email(show, name, clas, domain) {
	if (typeof domain == 'undefined') var domain="endodontology.ch";
		document.write('<a href=\"mailto:' + name + '@' + domain + '\"');
	if (typeof clas != 'undefined') document.write(' class="' + clas + '"');
		document.write('>' + show + '</a>');
}
