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>');//pathprefix
document.writeln('<frameset cols="*,1005,*" framespacing="0" frameborder="0">'+
'<frame src="/cms/rand.php" frameborder="0" scrolling="No" noresize marginwidth="0" marginheight="0">'+
'<frameset rows="330,*,25" framespacing="0" frameborder="0">'+
'<frame src="/cms/navigation_content.php" name="navigation" id="navigation" frameborder="0" scrolling="No" marginwidth="0" marginheight="0">'+
'<frame src="'+top.location.href+'" scrolling="auto" name="inhalt" frameborder="0" marginwidth="0" marginheight="0">'+
'<frame src="/cms/fuss.php" frameborder="0" scrolling="No" noresize marginwidth="0" marginheight="0" name="fuss" >'+
'</frameset>'+
'<frame src="/cms/rand.php" frameborder="0" scrolling="No" noresize marginwidth="0" marginheight="0">'+
'</frameset></html>');
document.close();
return true;
} 
return false;
}

function msieFraming() {
if (is_msie()) {
if (Framing()) {
window.setTimeout('top.frames["inhalt"].location.href = '+
'"'+top.location.href+'";',10);
}
}
}
//war netscFraming(
function loadFrame() {
if (!is_msie()) Framing();
}

msieFraming();

/* sicherung frames markus
if (parent.frames.length ==0){
	location.href="/reload_frame.php?" + location.pathname; 
}
*/