<!--

// Rollover
function high(LinkObject)	{
	LinkObject.style.background='rgb(225,228,239)';
	LinkObject.style.color='rgb(255,255,255)';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='0px';
	LinkObject.style.borderColor='rgb(49,106,197)';
}

function low(LinkObject)	{
	LinkObject.style.background='rgb(255,255,255)';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='0px';
	LinkObject.style.borderColor='rgb(227,224,221)';
}


// Rollover 2
function high1(LinkObject)	{
	LinkObject.style.background='rgb(122,187,255)';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='rgb(49,106,197)';
}

function low1(LinkObject)	{
	LinkObject.style.background='rgb(255,255,255)';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='rgb(255,255,255)';
}

// Rollover 3
function high2(LinkObject)	{
	LinkObject.style.background='rgb(122,187,255)';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='rgb(49,106,197)';
}

function low2(LinkObject)	{
	LinkObject.style.background='rgb(227,224,221)';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='rgb(227,224,221)';
}

// Rollover 4
function high3(LinkObject)	{
	LinkObject.style.background='rgb(122,187,255)';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='rgb(49,106,197)';
}

function low3(LinkObject)	{
	LinkObject.style.background='rgb(245,244,243)';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='rgb(245,244,243)';
}

function GoForIt(wohin)	{
	if(wohin == "nolink")	{
  		return;
	}
	else	{
	
		window.location.href = wohin;
	}
}

// einige Funtionen des Browsers ausschalten
document.write("<script for=document event=oncontextmenu>return false;</script>");
document.write("<script for=document event=ondrag>return false;</script>");
//-->
