<!-- 
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('<frameset cols="*,570,*" framespacing=0 frameborder=0 border=0><frame src="http://www.sungaya.de/schwarz/l.php4" name="links" framespacing=0 frameborder=0 border=0 scrolling=no><frameset rows="20,*,50" framespacing=0 frameborder=0 border=0 scrolling=no><frame src="http://www.sungaya.de/schwarz/o.php4" name="oben" framespacing=0 frameborder=0 border=0 scrolling=no>'+'<frame src="'+top.location.href+'" name=inhalt>'+'<frame src="http://www.sungaya.de/schwarz/u.php4" name="unten" framespacing=0 frameborder=0 border=0 scrolling=no></frameset><frameset rows="*,50" framespacing=0 frameborder=0 border=0 scrolling=no><frame src="http://www.sungaya.de/schwarz/r.php4" name="r" framespacing=0 frameborder=0 border=0 scrolling=no><frame src="http://www.sungaya.de/schwarz/ur.php4" name="ur" framespacing=0 frameborder=0 border=0 scrolling=no></frameset></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);
}}}
function netscFraming() {
if (!is_msie()) Framing();
}
msieFraming();
// --->
