function newWindow(url, name, w, h, toolbar, scroll, resize) {
   if (!w) {
      w = 200;
   }
   if (!h) {
      h = 200;
   }
   if (!toolbar) {
      toolbar = 'no';
   }
   if (!scroll) {
      scroll = 'yes';
   }
   if (!resize) {
      resize = 'yes';
   }
   var format = 'toolbar='+toolbar+',scrollbars='+scroll+',resizable='+resize+
                ',width='+w+',height='+h;
   newWin = open(url, name, format);
   if (newWin) {
      newWin.focus();
   }
}