<!--
// Generelle Definitionen und Variablen
var arImageSrc = new Array ();
var arImageSrc = new Array ();
var arImageSrc = new Array ();
var LastActive, FinishedPreload, TopActive ;

// Funktionen
// 1. Rahmen um geklickte Grafiken entfernen

function deblur(Objekt)
{
	if(is_ie4up)
	{
		Objekt.blur();
	}
}
// 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;
	}
}

function popup(name,id){
	width = 490;
	height = 490;
	XPos = 0;
	YPos = 0;
	Hoehe1 = screen.height;
	Weite1 = screen.width;
	//Popup
	url= name+".html";
	popupfenster = open(url,"popup2","width="+width+",height="+height+",location=no,resizable,menubar=no,scrollbars=yes,status=no,toolbar=no,top="+YPos+",screenY="+YPos+",left="+XPos+",screenX="+XPos);
	popupfenster.focus();
}

//-->

