1. Copy the javascript below or go to page source in you browser and use your mouse to select and copy all the javascript in the "head" of this page, from the tag <script language="javascript"> and everything down to and including </script>.
<script language="javascript"><!--
function makeWin(url, winWidth, winHeight, chrome) {
if (!chrome) {
chrome = 0;
}
if (navigator.appName == "Netscape" && parseFloat(navigator.appVersion) >= 4) {
var screenPosX,screenPosY;
screenPosX = (screen.availWidth - winWidth) / 50;
screenPosY = (screen.availHeight - winHeight) / 50;
window.open(url, 'new','toolbar=0,location='+chrome+',directories=0,
status='+chrome+',menubar=0,scrollbars=0,resizable=0,copyhistory=0,
width='+winWidth+',height='+winHeight+',screenX='+screenPosX+',
screenY='+screenPosY);
}
else {
mister = window.open(url, 'new','toolbar=0,location='+chrome+',directories=0,status='+chrome+',
menubar=0,scrollbars=0,resizable=0,copyhistory=0,width='+winWidth+',
height='+winHeight);
mister.location = url;
}
}
// --></script> |
2. Paste the copied javascript into the HTML source code of your page just above the </head> tag
3. This code will need to be added as extra html where you place the link:
onclick="makeWin('yourpage.htm',340,430); return false"

|