<!--

// Rollover für Bundesländer-Layer
function high(LinkObject)	{
	LinkObject.style.background='#ffd700';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='#990000';
}

function low(LinkObject)	{
	LinkObject.style.background='#ffffff';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='#ffffff';
}

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

//-->