function RebootServer() {
  var fRet;
  fRet = confirm('Are you sure you want to Reboot the server?\n\nBefore rebooting the server you should make sure there are no users connected\nto the server as they could lose work when the server restarts.\n\nYou should always check with your Smart-Net Solution Provider before rebooting the server.');
  if (fRet==true) {
    window.location.href="/smart-html/admin/reboot/reboot.php?appID=13";
  }
}

function ShutdownServer() {
  var fRet;
  fRet = confirm('Are you sure you want to Shutdown the server?\n\nBefore shutting down the server you should make sure there are no users connected\nto the server as they could lose work when the server powers off.\n\nYou should always check with your Smart-Net Solution Provider before shutting down the server.');
  if (fRet==true) {
    window.location.href="/smart-html/admin/shutdown/shutdown.php?appID=14";
  }
}

function OpenWindow(url) {
  var NewWindow=window.open(url);
}

