function openPopup(winUrl,breite,hoehe) {
		if (window.popupBox) {
			if (! window.popupBox.closed) window.popupBox.close();
		}
	popupBox = window.open(winUrl,'popupBox','toolbar=no,location=no,directories=no,menubar=no,status=no,scrollbars=yes,resizable=yes,width='+breite+',height='+hoehe) 
	window.popupBox.focus();
}
function openPopupBild(winUrl) {
		if (window.bildbox) {
			if (! window.bildbox.closed) window.bildbox.close();
		}
	window.open('/popup.htm?bild='+winUrl,'bildbox','toolbar=no,location=no,directories=no,menubar=no,status=no,scrollbars=no,resizable=yes,top=180,left=170,width=600,height=300') 
}
function mailTo(name,domain) {
	window.location.href= "mailto:"+name+"@"+domain;
}
function mailAddress(name,domain) {
	document.write(name+"&#64;"+domain);
}

