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  rows="50,512,100%" framespacing="0" frameborder="0">'+
    '<frame name="zero" src="../zero.html" marginwidth="100%" marginheight="50" scrolling="no" frameborder="0" noresize>'+
    '<frameset  rows="98,312,*" cols="320,458,*">'+
        '<frame name="one" src="../one.html" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize>'+
        '<frame name="two" src="../two.html" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize>'+
        '<frame name="three" src="../three.html" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize>'+
        '<frame name="four" src="../four.html" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize>'+
        '<frame name="main" src="'+top.location.href+'" marginwidth="0" marginheight="0" scrolling="auto" frameborder="0" noresize>'+
        '<frame name="five" src="../five.html" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize>'+
        '<frame name="six" src="../six.html" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize>'+
        '<frame name="seven" src="../seven.html" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize>'+
        '<frame name="eight" src="../eight.html" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize>'+
    '</frameset>'+
    '<frame name="bot" src="../zero2.html" marginwidth="100%" marginheight="100%" scrolling="no" frameborder="0" noresize>'+
'</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();