<!--




// Rollover für Portal-Navigation
function high1(LinkObject)	{
	LinkObject.style.background='rgb(200,0,0)';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='rgb(100,0,0)';
}

function low1(LinkObject)	{
	LinkObject.style.background='rgb(140,0,0)';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='rgb(140,0,0)';
}

function GoForIt(wohin)	{
	if(wohin == "nolink")	{
  		return;
	}
	else	{
	
		window.location.href = wohin;
	}
}

//-->