﻿// Basic popup script
// Created 08/12/08 by Tony Zahler
//
// Sample piece to put in HREF
//
// <a href="javascript:getPage('popup.htm',530 ,400)"></a>
//
if(screen){
topPos=0
leftPos=0
}
function getPage(thePage,wt,ht){
leftPos= (screen.width-wt)/2
topPos = (screen.height-ht)/2
//Set toolbar scroll and button appearance here
newWin1 = window.open(thePage,'aWin','toolbars=no, resizeable=yes, scrollbars=yes,left='+leftPos+',top=' +topPos+',width='+wt+',height='+ht)
}
