<html> <head> <title>Dynamic Frameset Test</title> </head> <script> <!-- Hide script from old browsers linkURL = "content.html" if (parent.document.URL) { callingURL = parent.document.URL; if (callingURL.indexOf('?') != -1) { linkURL = callingURL.substring(callingURL.indexOf('?')+1,callingURL.length); } } document.writeln('<FRAMESET COLS="130,*" FRAMEBORDER=yes BORDER=1>'); document.writeln('<FRAME SRC="navbar.html" NAME="nav" SCROLLING=NO MARGINHEIGHT=0 MARGINWIDTH=0 NORESIZE>'); document.writeln('<FRAME SRC="' + linkURL + '" NAME="content" SCROLLING=no MARGINHEIGHT=0 MARGINWIDTH=0 NORESIZE>'); document.writeln('</FRAMESET>'); // End hiding script from old browsers --> </script> <noscript> <!-- If Javascript is disabled, display the default frameset --> <frameset cols="130,*" frameborder=yes border=1> <frame src="navbar.html" name="nav" scrolling=no marginheight=0 marginwidth=0 noresize> <frame src="content.html" name="content" scrolling=no marginheight=0 marginwidth=0 noresize> </frameset> </noscript> <!-- User doesn't have a frames-compatible browser --> <noframes> <body bgcolor="#FFFFFF" text="#000000"> <center><h2>Please download a frames-capable browser</h2></center> </body> </noframes> </html>