function popupAufmachen(url,name,breite,hoehe,scrollbars) {	service = window.open("",name,"menubar=no,toolbar=no,resizeable=no,scrollbars="+scrollbars+",width="+breite+",height="+hoehe);		if(window.service)			{			service.focus();			service.location.href = url;			}}/******** Teaserfunktionen START /********//*function doTeaserChange(teaserNr,status){	var teaserTextVisual = "imgTeaserTextVisual_" + teaserNr;	var divTeaserVisual = "divTeaserVisual_" + teaserNr;	doImageChange(teaserTextVisual,status);	document.getElementById(divTeaserVisual).style.display = (status == 'hi') ? 'block' : 'none';}*/function doTeaserChange(teaserNr,status){	var imgTeaserTextVisualId = "imgTeaserTextVisual_" + teaserNr;	var divTeaserVisualId = "divTeaserVisual_" + teaserNr;	doImageChange(imgTeaserTextVisualId,status);	if (status == 'hi')	{		try		{		 	if (navigator.userAgent.indexOf('AppleWebKit') > -1) throw "Safari aktualisiert den Screen nicht, so dass das Fading nicht sichtbar wird."		 	if (document.getElementById(divTeaserVisualId).fadeoutid == null)		 	{		 		document.getElementById(divTeaserVisualId).opc = 0;		 		document.getElementById(divTeaserVisualId).style.opacity = 0;		 	}			clearTimeout(document.getElementById(divTeaserVisualId).fadeoutid)			document.getElementById(divTeaserVisualId).fadeoutid = null;			document.getElementById(divTeaserVisualId).style.display = 'block';			doFadeIn(divTeaserVisualId);		}		catch(e)		{			document.getElementById(divTeaserVisualId).style.display = 'block';		}	}	else	{		try		{		 	if (navigator.userAgent.indexOf('AppleWebKit') > -1) throw "Safari aktualisiert den Screen nicht, so dass das Fading nicht sichtbar wird."			clearTimeout(document.getElementById(divTeaserVisualId).fadeinid)			document.getElementById(divTeaserVisualId).fadeinid = null;			doFadeOut(divTeaserVisualId);		}		catch(e)		{			document.getElementById(divTeaserVisualId).style.display = 'none';		}	}	//document.getElementById('divAusgabe').innerHTML = document.getElementById(divTeaserVisualId).fadeinid + "<br>" + document.getElementById(divTeaserVisualId).fadeoutid;}function doFadeIn(elmId){	document.getElementById(elmId).opc += 20;	//document.getElementById('divAusgabe').innerHTML += (document.getElementById(elmId).opc/100) + "<br>";	document.getElementById(elmId).style.opacity = (document.getElementById(elmId).opc / 100);	document.getElementById(elmId).style.filter = "progid:DXImageTransform.Microsoft.Alpha(opacity="+parseInt(document.getElementById(elmId).opc)+")";	if (document.getElementById(elmId).opc >= 100)	{		clearTimeout(document.getElementById(elmId).fadeinid)		document.getElementById(elmId).fadeinid = null	}	else	{		document.getElementById(elmId).fadeinid = setTimeout("doFadeIn('"+elmId+"')",20);	}}function doFadeOut(elmId){	document.getElementById(elmId).opc -= 20;	//document.getElementById('divAusgabe').innerHTML += (document.getElementById(elmId).opc/100) + "<br>";	document.getElementById(elmId).style.opacity = (document.getElementById(elmId).opc / 100);	document.getElementById(elmId).style.filter = "progid:DXImageTransform.Microsoft.Alpha(opacity="+ document.getElementById(elmId).opc +")";	if (document.getElementById(elmId).opc <= 0)	{		clearTimeout(document.getElementById(elmId).fadeoutid)		document.getElementById(elmId).fadeoutid = null;		document.getElementById(elmId).style.display = 'none';	}	else	{		document.getElementById(elmId).fadeoutid = setTimeout("doFadeOut('"+elmId+"')",20);	}}/******** Teaserfunktionen ENDE /********//******** DHTML Scrollbalken Konfiguration START /********/function initsb(obj){	ec = new eventConverter();	sb = new scrollBars(obj);	sb.onSetup = sbconf;	sb.init();}function sbconf(){	this.setBarWidth('10px'); // default 9px	this.setButtonSize('6px');	this.setButtonBGImg('/finesse/art/buttons/scrollButtonTop.gif','/finesse/art/buttons/scrollButtomRight.gif','/finesse/art/buttons/scrollButtonBottom.gif','art/buttons/scrollButtonLeft.gif');	this.setAnfasserLength('46px','46px'); // default 32px	this.setAnfasserBgColor('#7D3413');	this.setBarContentBgImg('/finesse/art/scrollVBG.gif','/finesse/art/scrollHBG.gif');	this.setButtonContentSpeed(2); // default 4	this.setWheelContentSpeed(18); // default 9}function initsb_ol(obj){	ec = new eventConverter();	sb2 = new scrollBars(obj);	sb2.onSetup = sbconf_ol;	sb2.init();}function sbconf_ol(){	this.setBarWidth('10px'); // default 9px	this.setButtonSize('6px');	this.setButtonBGImg('/finesse/art/buttons/scrollButtonTopOverlay.gif','/finesse/art/buttons/scrollButtomRightOverlay.gif','/finesse/art/buttons/scrollButtonBottomOverlay.gif','art/buttons/scrollButtonLeftOverlay.gif');	this.setAnfasserLength('46px','46px'); // default 32px	this.setAnfasserBgColor('#7D3413');	this.setBarContentBgImg('/finesse/art/scrollVBG.gif','/finesse/art/scrollHBG.gif');	this.setButtonContentSpeed(2); // default 4	this.setWheelContentSpeed(18); // default 9}/******** DHTML Scrollbalken Konfiguration ENDE ********//********submitToOpener() Version 1.1 30.09.2006, 15:01 Uhr********/function linkToOpener(url,closepopup){	try	{		window.opener.location.href = url;	}	catch(e)	{		window.open(url,'Home','location=yes,menubar=yes,personalbar=yes,scrollbars=yes,status=yes,toolbar=yes,directories=yes,resizable=yes');	}	if (closepopup != false)	{		self.close()	}}/********submitToOpener() Version 1.1 30.11.2006, 15:04 Uhr********/function submitToOpener(formular,name,closepopup){	try	{		try		{			var openerName = opener.name;			if (openerName == "") throw "opener.name is empty."		}		catch(e)		{			var openerName = name;			window.opener.name = openerName;		}		window.opener.name = openerName;		document.forms[formular].target = openerName;		document.forms[formular].submit();	}	catch(e)	{		window.open('',openerName,'location=yes,menubar=yes,personalbar=yes,scrollbars=yes,status=yes,toolbar=yes,directories=yes,resizable=yes');		document.forms[formular].target = openerName;		document.forms[formular].submit();	}	if (closepopup != false)	{		self.close()	}}/* Funktionen, die von verschiedenen Seiten aufgerufen werden, aber nicht streng standardisiert sind  ENDE */function CreateFlash(DivID,content){	var d = document.getElementById(DivID);	d.innerHTML = content;}