This is a popup window scaled to 960x600 pixels. Note that if you close this window, the main window has not shifted to the top of the page.

 

Instructions:

1. In your main page, copy and paste the following code into the header:

<script type="text/javascript">
<!--
function ShowPopup(page,name,options)
{
Window = window.open(page,name,options);
}
//-->
</script>

 

2. To create a link, copy and paste this code into the body of your main page (replace "link.html" with your link, modify width/height, delete undesired browser chrome):

<a href="link.html" target="_blank" onclick="ShowPopup('link.html','popup','resizable=yes,scrollbars=yes,location=yes,toolbar=yes,directories=yes,status=yes,width=960,height=600'); return false" >Link</a>

 

3. Add this code to the header of your popup file (this will bring the window to the front):

<script language="JavaScript" type="text/javascript">
<!--
self.focus();
// -->
</script>