// Popup vindue - bruges på hele siden - navn må ikke ændres
function popUp(strURL, intWidth, intHeight) {
  var intLeft = (screen.availWidth - intWidth - 10) / 2;
  var intTop  = (screen.availHeight - intHeight - 29) / 2;

  objWin = window.open(strURL, 'ViewPopup', 'left=' + intLeft + ',top=' + intTop + ',width=' + intWidth + ',height=' + intHeight + ',menubar=no,toolbar=no,location=no,status=yes,scrollbars=no,resizable=no');
  }

