<!--
function open_main_window(toolbar) {
  var winW = 730, winH = 570;

  if (parseInt(navigator.appVersion) > 3) {
   if (navigator.appName=="Netscape") {
    winW = window.outerWidth - 30;
    winH = window.outerHeight - 30;
   }
   if (navigator.appName.indexOf("Microsoft") != -1) {
    winW = document.body.offsetWidth - 30;
    winH = document.body.offsetHeight - 30;
   }
  }

  //var win=winopen('fs_main.php','kaweb','outerWidth='+winW+',outerHeight='+winH+',scrollbars=auto,resizable=yes,hotkeys=no',true);
  if (toolbar != 0) {
    var win;
    win=winopen('fs_main.php','kaweb','outerWidth='+winW+',outerHeight='+winH+',scrollbars=auto,resizable=yes,hotkeys=yes,toolbar=yes,menubar=yes,status=yes,titlebar=yes,directories=yes,location=yes',true);
  } else {
    win=winopen('fs_main.php','kaweb','outerWidth='+winW+',outerHeight='+winH+',scrollbars=auto,resizable=yes,hotkeys=no,status=yes',true);
  }

  var x=(screen.width/2)-(winW/2);
  var y=(screen.height/2)-(winH/2);
  win.moveTo(x,y);
  win.focus();
}

//-->
