var page = self.location.href;
		
function Framing(){ 
	if (this.document == top.document){
		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\n<head>\n<title>'+doctitle+'</title>\n</head>\n');
		document.writeln('<frameset rows="69,36,*,60" cols="*" framespacing="0" frameborder="NO" border="0">\n');
		document.writeln(' <frame src="/banner.php" name="overtopFrame" scrolling="NO" noresize title="bannerFrame" >\n');
		document.writeln(' <frame src="/menue.php" name="topFrame" scrolling="NO" noresize title="menueFrame" >\n');
		document.writeln(' <frame src="'+page+'" name="mainFrame" title="hauptFrame">\n');
		document.writeln(' <frame src="/logo.php" name="bottomFrame" scrolling="NO" noresize title="logoFrame">');
		document.writeln('\n</frameset>\n');
		document.writeln('<body><p>&nbsp;</p></body>\n\n</html>');
		document.close();
		return true;
	}
	return false;
}

if (Framing()) window.setTimeout('top.frames["bottomFrame"].location.href = '+'"'+page+'";',10);

