function popup(url,width) {
   buffer = 20;
   winName = "extChild";
   height = 450;

   width +=buffer;
   height += buffer +15;
   xPos = (self.screen.width - width) / 2 ;
   yPos = (self.screen.height - height) / 2 ;
   args = "width=" + width + "," + "height=" + height + ",location=0,menubar=0,resizable=0,scrollbars=yes,";
   args = args + "status=0,titlebar=0,toolbar=0,hotkeys=0,screenx=" + xPos + ",screeny=" + yPos + ",";
   args = args + "left=" + xPos + "," + "top=" + yPos;
   extChild = window.open(url,winName,args);
   if (!extChild.closed) extChild.focus();
}

function popup2(url,width, height) {
   buffer = 20;
   winName = "extChild";

   width +=buffer;
   height += buffer +15;
   xPos = (self.screen.width - width) / 2 ;
   yPos = (self.screen.height - height) / 2 ;
   args = "width=" + width + "," + "height=" + height + ",location=0,menubar=0,resizable=0,scrollbars=yes,";
   args = args + "status=0,titlebar=0,toolbar=0,hotkeys=0,screenx=" + xPos + ",screeny=" + yPos + ",";
   args = args + "left=" + xPos + "," + "top=" + yPos;
   extChild = window.open(url,winName,args);
   if (!extChild.closed) extChild.focus();
}


