English
<!-- http://www.downcodes.com --> <!-- bbs http://bbs.downcodes.com --> <!--There are two steps to complete this special effect. The first step is to put the following code Put it in the <body> area--> <SCRIPT language=JavaScript> <!-- Begin var windowW=214 // wide var windowH=398 // high var windowX = 260 // from left var windowY = 100 // from top var urlPop = "http://www.downcodes.com" var title = "This is a frame in a page" var autoclose = true // do not edit below this line s = "width="+windowW+",height ="+windowH; var beIE = document.all?true:false function openFrameless() { if (beIE) { NFW = window.open("","popFrameless","fullscreen,"+s); NFW.blur( ); window.focus(); NFW.resizeTo(windowW,windowH); NFW.moveTo(windowX,windowY); var frameString=""+ "<html>"+ "<head>"+ "<title>"+ title+"</title>"+ "</head>"+ "<frameset rows='*,0' framepacing=0 border=0 frameborder=0>"+ "<frame name='top' src='"+ urlPop+"' scrolling=auto>"+ "<frame name='bottom' src='about:blank' scrolling='no'>"+ "</frameset>"+ "</html>"; NFW.document. open(); NFW.document.write(frameString); NFW.document.close(); } else { NFW = window.open(urlPop,"popFrameless","scrollbars,"+s); NFW.blur(); window.focus(); NFW.resizeTo(windowW,windowH); NFW.moveTo(windowX,windowY); } NFW.focus(); if (autoclose) { window.onunload = function(){NFW.close(); } } } // End --> </SCRIPT> <A href="javascript:openFrameless()">Open intra-page frame</A> <!--Step 2: Modify <body> to:--> <body onload=top.window.focus()>