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>');
		document.writeln('<head>');
		document.writeln('<title>'+doctitle+'</title>');
		document.writeln('</head>');
		document.writeln('<frameset rows="97,1*" frameborder="NO" border="0" framespacing="0" noresize>');
		document.writeln('<frame src="http://www.frankreich-forum.de/menu_start.html" name=frmMenu scrolling="no" noresize>');
		document.writeln('<frame src="'+top.location.href+'" name=frmMain >');
		document.writeln('</frameset>');
		document.writeln('</html>');

		document.close();

		return true;
	} 
	return false;
}

function msieFraming()
{
	if (is_msie())
	{
		if (Framing())
		{
			window.setTimeout('top.frames["frmMain"].location.href = '+'"'+top.location.href+'";',10);
		}
	}
}

function netscFraming()
{
	if (!is_msie()) Framing();
}

msieFraming();
