var quickyImgWindows = 0;

function showQuickyDoc(wnd, file, width, height) {
  var hWndQuicky = window.open(file, wnd, 'height=' + height + "; width=" + width + "; scrollbars=yes");
}

function showQuickyImage(title, file, width, height) {
  quickyImgWindows++;
  var hWndQuickyImage = window.open('/quickies/?file=' + file + '&title=' + title + '&width=' + width + '&height=' + height, 'quickyimage' + quickyImgWindows, 'height=' + height + '; width=' + width);
}

function confirmLogOff(sUrl) {
  var b;
  b = confirm("Möchtest du dich wirklich ausloggen?");
  if (b) window.location.href = sUrl;
}