How to generate pop-up window w/ framesets?

admin

Administrator
Staff member
I would like to generate a small window that has no menus, buttons, address bar, etc. Just the page itself.
I need to have the window load the following frameset code.

<html>
<head>
<title>Little Window</title>
</head>

<frameset rows="200,700" border="2">
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"page1.html" noresize marginheight="0" marginwidth="0" scrolling="yes" name="menuframe">
<frame src="page2.html" name="content2">


</frameset>
</html>

I think I can use window.open to do this, but I'm not sure exactly, nor how to get the page to include my html code. Thanks.
 
Back
Top