
/* openWindow
---------------------------------------------------------*/
var w = window;
function openWindow(url, width, height) {
   if ((w == window) || w.closed) {
      w = open(url, "_blank","status=no,resizable=yes,width=" + width + ",height=" + height + ",scrollbars=yes");
   } else {
      w.focus();
   }
   return(false);
}

