function dom(i)
{
// alert("dom called");
 
 var pre = "mailto:";
 var at = "@";
 var pos = "ze3.de";
 switch (i)
 {
 	case 1:
		 parent.location = pre+"bauer"+at+pos;
		 return true;
 	case 2:
		 parent.location =pre+"finke"+at+pos;
		 return true;
 	case 3:
		 parent.location = pre+"plinge"+at+pos;
		 return true;		  
 }
 
 return true;
}
