Add this to your website as you see below.
HTML Code:
<HTML>
<HEAD>
<TITLE>Opening a Popup Window</TITLE>
<SCRIPT LANGUAGE=JAVASCRIPT TYPE="TEXT/JAVASCRIPT">
<!-- Hide script from old browsers
function popup(){
popupwindow = window.open("somewhere.html","","toolbar=no,location=no,scrollbars=no,resizable=no,width=400,height=200,left=500,top=200")
}
// End hiding script from old browsers -->
</SCRIPT>
</HEAD>
<BODY onLoad="popup()" onunLoad="popup()">
</BODY>
</HTML>
Now you need to make a file named somewhere.html and put it in the public directory of the domain you are making the pop up for. I'm assuming you know how to use your FTP. This html file is your pop.
Bookmarks