To have a widow automatically open when someone navigates to your page, follow these simple instructions....
First you have to place the Java Script code within the document's <HEAD> tags.
The script I have used is as follows:
<SCRIPT LANGUAGE="JavaScript">
{desktop = window.open("window.htm","new","toolbar=no,location=no,
</SCRIPT>
status=no,menubar=no,scrollbars=no,width=505,height=350,resizable=no" );}
You have the choice of a variety of settings such as having scrollbars or not (=no or =yes). You can also specify the size of the pop-up window (height and width), this will depend upon how much information is on the page/file you want to display in the window.
Finally, the window.htm will be the name of the file you are linking to, it does not have to be in the same directory as your main file and can be anywhere on the world wide web.