
<!--
function Edatum() {
  var mod = new Date(document.lastModified);
  var months = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
  var year = mod.getYear();
  if (year < 100) year += 1900;
  else if (year < 2000) year = 20 + year.toString().substring(1,3);
  document.write("(Modified&nbsp;&nbsp;" + months[mod.getMonth()] +  "&nbsp;"  + mod.getDate() + ",&nbsp;" + year +")");
}

function Sdatum() {
  var mod = new Date(document.lastModified);
  var months = new Array("Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec");
  var year = mod.getYear();
  if (year < 100) year += 1900;
  else if (year < 2000) year = 20 + year.toString().substring(1,3);
  document.write("(&Auml;ndrad&nbsp;&nbsp;" + mod.getDate() + "-" + months[mod.getMonth()] + "-" + year +")");
}

function openNewWindow(theURL,winName,features,picText) {  //Lj version -05
  xWin=window.open("",winName,features);
  xWin.document.write("<html><body style='background-color:#111'>");
  xWin.document.write("<center><font color='red'><b>(stäng genom att klicka i bilden)</b></font></center>");
  xWin.document.write("<br><center><a href='' onClick='window.close()'><img src=",theURL," alt=''></a></center>");
  xWin.document.write("<br><center><font color='white'><b>",picText,"</b></font></center></body></html>");
  // xwin.document.close();
  // xwin.window.focus();
}

function openPicWin(theURL,winName,features,picText) {  //Lj version -05
  xWin=window.open("",winName,features);
  xWin.document.write("<html><body>");
  xWin.document.write("<center>",picText,"</center>");
  xWin.document.write("<center><a href='' onClick='window.close()'><img src=",theURL," alt=''></a></center>");
  xWin.document.write("</body></html>");
  // xwin.document.close();
  // xwin.window.focus();
}




function openNewWin(mypage,myname,w,h,features,ptext) {
  var pw = screen.width-250;
  var ph = screen.height-200;
  var winl = 40;
  var wint = 40;
  var settings = 'height=' + (screen.height-80) + ',';
  settings += 'width=' + (screen.width-80) + ',';
  settings += 'top=' + wint + ',';
  settings += 'left=' + winl + ',';
  settings += features;
  win = window.open("blank.htm",myname,settings,ptext);
  win.window.focus();
  win.document.write("<html><body><center>s/y FALKEN    (stäng genom att klicka i bilden)<br><a href='#null' onClick='window.close()'><img src=",mypage," alt='",ptext,"' width='",pw,"'></a><br>",ptext,"</center></body></html>");
  win.document.close();
}

// -->