<!--

function popup (doc, w, h) {
  if (w == null) w = 450
  if (h == null) h = 450
  var floater = null
  window.name = "skbmain"
  floater = window.open (doc, 'skbpopup', 'width=' + w + ',height=' + h + ',resizable=yes,scrollbars=yes')

  if (floater != null) {
    if (floater.opener == null) {
      floater.opener = self
    }
    floater.location.href = doc
  }
}

// brez scrollbarjev
function popup2 (doc, w, h) {
  if (w == null) w = 450
  if (h == null) h = 450
  var floater = null
  window.name = "skbmain"
  floater = window.open (doc, 'skbpopup', 'width=' + w + ',height=' + h + ',resizable=no,scrollbars=no')

  if (floater != null) {
    if (floater.opener == null) {
      floater.opener = self
    }
    floater.location.href = doc
  }
}
-->