function FlashCheck()
{	var b = navigator.appName;
	if (b=="Netscape")
		this.b = "ns";
	else if (b=="Microsoft Internet Explorer")
		this.b = "ie";
	else
		this.b = b;
var Ja = navigator.plugins["Shockwave Flash"];
if (Ja || this.b == "ie")
	this.Ja = true;
else
	this.Ja = false;
var V2 = navigator.plugins["Shockwave Flash 2.0"]
var V3 = navigator.plugins["Shockwave Flash 3.0"];
var V4 = navigator.plugins["Shockwave Flash 4.0"];
var V5 = navigator.plugins["Shockwave Flash"];
if (V2)			{this.V = 2; this.Ja = false;}
else if (V3)	{this.V = 3; this.Ja = true;}
else if (V4)	{this.V = 4; this.Ja = true;}
else if (V5)	{this.V = 5; this.Ja = true;}
else
	this.V = -1;
}
Flash = new FlashCheck()

/**************************************/
/* browserabrage					  */
/**************************************/
function BrowserCheck()
{
	var b = navigator.appName;
	if (b=="Netscape")
		this.b = "ns";
	else if (b=="Microsoft Internet Explorer")
		this.b = "ie";
	else
		this.b = b;
	this.v = parseInt(navigator.appVersion);
	this.ns = (this.b=="ns" && this.v>=4);
	this.ns4 = (this.b=="ns" && this.v==4);
	this.ns5 = (this.b=="ns" && this.v==5);
	this.ie = (this.b=="ie" && this.v>=4);
	this.ie4 = (navigator.userAgent.indexOf('MSIE 4')>0);
	this.ie5 = (navigator.userAgent.indexOf('MSIE 5')>0);
	if (this.ie5)
		this.v = 5;
	this.min = (this.ns||this.ie);
}

ist = new BrowserCheck()
/*** end here *************************/

function ObjUNav(Hide, Show)
{	this.Hide = Hide;
	this.Show = Show;
	return this;
}

function refLay(name)
{	if(ist.ie)		return eval('document.all.' +name+ '.style');
	if(ist.ns4)		return document.layers[name];
	if(ist.ns5)		return document.getElementById(name).style;
}
function hideLay(name)		{	refLay(name).visibility = OBJ.Hide;		}
function showLay(name)		{	refLay(name).visibility = OBJ.Show;		}
function moveLay(name,x,y)
{
	refLay(name).top = y;
	refLay(name).left = x;
}
function posTop(name)
{	if(ist.ie)		return eval('document.all.' +name+ '.offsetTop');
	if(ist.ns4)		return document.layers[name].top;
	if(ist.ns5)		return document.getElementById(name).offsetTop;
}
function posLeft(name)
{	if(ist.ie)		return eval('document.all.' +name+ '.offsetLeft');
	if(ist.ns4)		return document.layers[name].left;
	if(ist.ns5)		return document.getElementById(name).offsetLeft;
}
function heighLay(name)
{	if(ist.ie)		return eval('document.all.' +name+ '.offsetHeight');
	if(ist.ns4)		return document.layers[name].clip.height;
	if(ist.ns5)		return document.getElementById(name).offsetHeight;
}
/*************************/
/* Objekt initialisieren */
/*************************/
if(ist.ns4)					{	OBJ = new ObjUNav('hide', 'show');	}
if(ist.ns5 || ist.ie)		{	OBJ = new ObjUNav('hidden','visible');	}
/*** end here *****************************/
/******************************************/
/* Ausgabe und SubAusgabe erzeugen */
/******************************************/
function RestoreFrame()		{	if(ist.ns4)		{	self.location.reload(false);	}	}
/*** end here **********************/

self.name="Content";
