
<!--

function is_msie()
{
return (navigator.appname=="Microsoft Internet Explorer");
}

function Framing()
{  
	if (this.document == top.document ||
	top.location.host != this.location.host)
	{
		var pathprefix = location.protocol + '//' 
		+ location.host
		+ location.pathname.substring (0,location.pathname.lastIndexOf('/')+1);

		var doctitle =document.title;
		document.clear();
		document.open("text/html");
		document.writeln('<html>\n<head><title>' + doctitle+'</title></head>');
		document.writeln
		('<meta name="Microsoft Border" content="none">'
                +'<frameset cols="245,31,*" border="false" frameborder="0" framespacing=0 bordercolor=0 onload=0 onunload=0>'
		+'<frameset rows="*,10%">'
		+ '<frame src="'+pathprefix+'links.htm"  noresize scrolling=no>');
		document.writeln

		('<frame src="'+pathprefix+'unten.htm" noresize scrolling=no>'
		+'</frameset>'
		+ '<frame src="'+pathprefix+'linie.htm" noresize scrolling=no>'
		+ '<frame src="'+top.location.href+'" name=main>'
            	+ '</frameset></html>');
		document.close();
		return true;
	}
	return false;
}

function msieFraming()
{
	if (is_msie())
	{
		if (Framing())
		{		
			window.setTimeout('top.frames["main"].location.href = '+'"'+top.location.href+'";',10);
		}
	}
}

function netscFraming()
{
	if (!is_msie()) Framing ();
}
msieFraming();

//-->
