Ignore me - I got it
Code:
<head>
<script language="javascript" type="text/javascript">
<!--
var newwindow = '';
function PopUpWin(url) {
newwindow=window.open(url,'popupname','width=250,height=250,left=100,top=100,resizable=no');
}
function ClosePopUpWin(){
newwindow.close();
}
// -->
</script>
</head>
Code:
<body>
<form>
<input type=button onClick="return PopUpWin('popup.html');" value="Open">
<input type=button onClick="ClosePopUpWin();" value="Close">
</form>
</body>
Then obviously you need the "popup.html" page that will open in the popup window.
Bookmarks