
function display_image(eng,url,text){
htmlkod = "<HTML><HEAD><meta http-equiv='Content-Type' content='text/html; charset=UFT-8'><meta http-equiv='imagetoolbar' content='no'>";
htmlkod += "<link rel='stylesheet' href='../stylesheet.css'><script language='javascript1.1' src='../java/nolist.js' type='text/javascript'></script>";
if (eng==1){
htmlkod += "<TITLE>Pictures</TITLE>";}
else{
htmlkod += "<TITLE>Bilder</TITLE>";}
htmlkod += "</HEAD><BODY BGCOLOR=FFFFFF TEXT=000000>"
htmlkod +="<div align='center'><table border='0'><tr><td><div align='center'>";
htmlkod += "<HR><IMG SRC=' ";
htmlkod += url;
htmlkod +=  "' vspace='1' border='1'></div><div align='left'><div class=year>";
htmlkod += text; 
htmlkod += "</div></div>";
if (eng==1){
htmlkod += "<div align='center'><HR><FORM><INPUT TYPE='button' VALUE='Close' onClick='window.close()'>";}
else {
htmlkod += "<div align='center'><HR><FORM><INPUT TYPE='button' VALUE='St&auml;ng'  onClick='window.close()'>";}

htmlkod += "</div></div></td></tr></table></BODY></HTML>";
var agt;
agt = navigator.userAgent;
if (agt.indexOf("Opera") != -1) {
PreView = window.open("popup.html", "Preview", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0");
}
else {
PreView = window.open("", "Preview", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width="+screen.availWidth+",height="+screen.availHeight+",left=0,top=0");
}
PreView.document.open();
PreView.document.write(htmlkod);
PreView.document.close();
}
