
function PopUp(url, width, height)
{
      if(!width) width = 550;
      if(!height) height = 450;
      var left = (screen.width/2) - (width/2);
      var top = (screen.height/2) - (height/2);
      var win;
      win = window.open(url, null, 'left=' + left + ',top=' + top + ',width=' + width + ',height=' + height + ',toolbar=0,resizable=0');
      win.focus();
      return(win);
}