function tm(link,name,dom,country){
domains = new Array("slrghinwil");
countries = new Array(".ch",".com",".biz",".info");
var full = name + "@" + domains[dom] + countries[country];
switch(link){
case 1: document.write("<a href=mailto:"+full+">"+full+"</a>"); break;
case 0: document.write("<a href=mailto:"+full+">Mail</a>"); break;
case 2: document.write("<a href=mailto:"+full+">"); break;
}
}
