/* Funktion öppnar bild i nytt fönster */
if(top.location == self.location){
top.location.href="../index.htm"
}
function newWindow(bild){
ahaWindow = window.open(bild, 'ahaWin', 'Width=355,Height=470, left=25, top=25, scrollbar=no, resizable=no') 
ahaWindow.focus()
}
function new_Window(bild2){
jamtWindow = window.open(bild2, 'jamtWin', 'Width=472, Height=365, left=100, top=100, status=no, menubar=no, directories=no, scrollbar=no, toolbar=no, resizable=no, location=no') 
jamtWindow.focus()
}
function irishWindow(bild3){
irish_Window = window.open(bild3, 'irishWin', 'Width=425, Height=325, left=150, top=150, scrollbar=no, resizable=no') 
irish_Window.focus()
}
function showImg(strImage,strTitle) 
{
  var myImage = new Image();
  myImage.src=strImage;
  properties='height=338,width=450, right=100, top=100';
  var imgWindow = window.open('','',properties);
    
  html = '<html>';
  html += '<head>';
  html += '<title>'+strTitle+'</title>';
  html += '</head>';
  html += '<body topmargin="0" marginheight="0" leftmargin="0" marginwidth="0">';
  html += '<img src="'+myImage.src+'" onLoad="resizeTo(document.bild.width+10,document.bild.height+29);" name="bild" OnClick="self.close();">';
  html += '</body>';
  html += '</html>';
    
  imgWindow.document.write(html);
}
