<!--
// Generelle Definitionen und Variablen
var arImageSrc = new Array ();
var LastActive, FinishedPreload ; 

// Funktionen

function openBrWindowFever(theURL,winName,features,ref,center){
  eval("var "+winName);	if (eval(winName)==true && !winName.closed)
  {winName.focus();}else{if(ref){
  var refURL=theURL+"?URL="+document.location;}else{var refURL=theURL;}
  if(center!="vals"){a=new Array();a=center.split('|');
  t=((screen.height)-a[0])/2;l=((screen.width)-a[1])/2;
  features=features+",top="+t+",left="+l;}
  winName=window.open(refURL,winName,features);
  winName.focus();winName = true;}
}

// 1. Rahmen um geklickte Grafiken entfernen
function deblur(Objekt)
{
	if(is_ie4up)
	{
		Objekt.blur();
	}
}
function HideLinkFocus() {
	for(var i = 0; i < document.links.length; i++)
	document.links[i].hideFocus = true;
}

// 2. Bildvorlader
function Vorlader()
{
	if (is_ie4up || is_nav4up)
	{
		arImageList = new Array ();
		for (counter in arImageSrc)
		{
			for(i = 0; i < arImageSrc[counter].length; i++)
			//alert (i);
			{
				arImageList[counter+"_"+i] = new Image();
				arImageList[counter+"_"+i].src = arImageSrc[counter][i];
			}
		}
		FinishedPreload = 1;
	}
}
// 3. Bildwechsel
function Bildwechsel(Name,Status) {
	if(FinishedPreload == 1) {
		document[Name].src = arImageList[Name+"_"+Status].src;
	}
}
// 4. Highligt setzen
function HLight(Name) {
	if(Name != "" && Name == Name) {
		document[Name].src = arImageList[Name+"_1"].src;
	}
}
// 6. PopUp - Seiteempfehlen

styles=new Object();
styles.fenster_se='width=400,height=600,location=no,menubar=no,scrollbars=no,status=no,toolbar=no';
function open_win(pfad,url,name,style)
{
	fenster=window.open(pfad,name,styles[style]);
}


//-->

