function visFlash(movieID) {
location.href = 'flash.asp?id=' + movieID;
}

var diasWindow = null;

function visBilledserie(x) {
  var winleft = (screen.width - 790) / 2;
  var wintop = (screen.height - 550) / 2;
  diasWindow = window.open('dias.asp?id=' + x,'diasWindow','width=790,height=550,left='+winleft+',top='+wintop);
  if(!diasWindow) {
  alert('Blokering af pop-op-vinduer er slået til\n\nHold Ctrl tast nede, mens du klikker på link til billedserie');
  }
  else {
  if(diasWindow.open) diasWindow.focus();
  }
}

var siteWindow = null;

function visHjemmeside(x) {
  var winleft = (screen.width - 790) / 2;
  siteWindow = window.open(x,'siteWindow','width=790,height=550,left='+winleft+',top=0,menubar=yes,toolbar=yes,location=yes,status=yes,resizable=yes,scrollbars=yes');
  if(!siteWindow) {
  alert('Blokering af pop-op-vinduer er slået til\n\nHold Ctrl tast nede, mens du klikker på link til hjemmeside');
  }
  else {
  if(siteWindow.open) siteWindow.focus();
  }
}

function getTitle(img) {
var separator = img.lastIndexOf("\/")+1;
var fullname = img.slice(separator);
return fullname;
}

var imageWindow = null;

function visBillede(iName, iWidth, iHeight) {
  var winleft = (screen.width - iWidth) / 2;
  var wintop = (screen.height - iHeight) / 2;
  imageWindow = window.open('','imageWindow','width='+iWidth+',height='+iHeight+',left='+winleft+',top='+wintop);
  if(imageWindow) {
  imageWindow.document.writeln('<html>');
  imageWindow.document.writeln('<head>');
  imageWindow.document.writeln('<meta http-equiv=\"imagetoolbar\" content=\"no\" />');
  imageWindow.document.writeln('<title>' + getTitle(iName) + '</title>');
  imageWindow.document.writeln('</head>');
  imageWindow.document.writeln('<body onblur="self.close()" style=\"margin:0px;border-style:none\">');
  imageWindow.document.writeln('<img src=\"' + iName + '\" width=\"' + iWidth + '\" height=\"' + iHeight + '\">');
  imageWindow.document.writeln('</body>');
  imageWindow.document.writeln('</html>');
  imageWindow.document.close();
  }
  else {
  alert('Blokering af pop-op-vinduer er slået til\n\nHold Ctrl tast nede, mens du klikker på thumbnails');
  }
}

var printWindow = null;

function visUdskrift() {
  var winleft = (screen.width - 790) / 2;
  var wintop = (screen.height - 550) / 2;
  printWindow = window.open('print.asp','printWindow','width=790,height=550,left='+winleft+',top='+wintop+',resizable=yes,scrollbars=yes');
  if(!printWindow) {
  alert('Blokering af pop-op-vinduer er slået til\n\nHold Ctrl tast nede, mens du klikker på \"Udskriv\"');
  }
  else {
  if(printWindow.open) printWindow.focus();
  }
}
