// This scrpt requires the known w and h to run right
// By: Brad
function popUp(url,w,h)
{
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
var h2   = h + 26;
var w2   = w + 20;

myWin=window.open
(url,"plain",'toolbar=0,location=1,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,height='+h2+',width='+w2+',left='+winl+',top='+wint+',screenX='+winl+',screenY='+wint+'');
self.name = "mainWin";
}