function newImage(arg) {	if (document.images) {		rslt = new Image();		rslt.src = arg;		return rslt;	}}function ON_MOUSEOVER(bild_name, text) {	if (self.document.images) {		self.document[bild_name].src = eval(bild_name+"_o.src");	}}function ON_MOUSEOUT(bild_name) {	if (self.document.images) {		if ((top.index_focus == bild_name) & (top.index_focus != "0")) {			self.document[bild_name].src = eval(bild_name+"_o.src");			return;		}		self.document[bild_name].src = eval(bild_name+"_n.src");	}}function INIT() {	top.index_focus = "0";	top.defaultStatus = "";	top.status = "";	return true;}function ON_AKTIV(seite) {	if (top.index_focus != "0") {		self.document[top.index_focus].src = eval(top.index_focus+"_n.src");	}	self.document[seite].src = eval(seite+"_o.src");	top.index_focus = seite;}function sendmail(referer,server){	window.location="mailto:"+referer+"@"+server;}function sendmail2(address){	window.location="mailto:"+address;}function newWindow(url,width,height){content=window.open(url,'extra','width='+width+',height='+height+',menubar=no,scrollbars=no,toolbar=no,location=no,status=no,resizable=no,fullscreen=no');content.focus();}