<!--

function navOnMouseOver(obj)
{
	oldbackgroundcolor = obj.style.backgroundColor;
    obj.style.backgroundColor = "#8aa8a0";
    obj.style.color = "#000000";
   	if (document.getElementById && parseInt(window.navigator.appVersion.charAt(0)) >= 6) obj.style.cursor = "pointer";
}


function navOnMouseOut(obj)
{
    obj.style.backgroundColor = oldbackgroundcolor;
    obj.style.color = "#000000";
}


function img_swap(which,that,i)
{
	if (document.images)
	{
		document[which].src = eval(that + '[' + i + '].src')
	}
}


var wstat
var ns4up = (document.layers) ? 1 : 0;
var ie4up = (document.all) ? 1 : 0;
var xsize = screen.width;
var ysize = screen.height;
var breite = 480;
var hoehe = 300;
var xpos = 0;
var ypos = 0;


function open_win(datei,size)
{
	if (size == 1)
	{
		breite = 480;
		hoehe = 300;
	}
	else if (size == 2)
	{
		breite = 480;
		hoehe = 224;
	}
	else if (size == 3)
	{
		breite = 450;
		hoehe = 710;
	}
	else if (size == 4)
	{
		breite = 450;
		hoehe = 570;
	}
	else if (size == 5)
	{
		breite = 450;
		hoehe = 500;
	}
	else
	{
		breite = 550;
		hoehe = 500;
	}

	xpos = (xsize-breite)/2;
	ypos = (ysize-hoehe)/2;
	wstat = window.open(datei,"","scrollbars=no,status=no,toolbar=no,location=no,directories=no,resizable=no,menubar=no,width="+breite+",height="+hoehe+",screenX="+xpos+",screenY="+ypos+",top="+ypos+",left="+xpos)
}

//-->

