// JavaScript Document
function popup(url,name,breite,hoehe){
F1 = window.open(url,name,"width="+breite+", height="+hoehe+", left=100, top=100");
F1.focus();
}

function message(dest){
	set1="mailto:";
	set2="myswitchboard.de";
	window.open (set1+dest+"@"+set2,'_parent');
}