// JavaScript Document


//Popup för bilder
function Show(filename,winTitle) 
{
    var myImage = new Image();
    myImage.src=filename;
    properties='height=10,width=10,menubar=no,location=no,resizable=no,scrollbars=no,status=no';
    var imgWindow = window.open('','',properties);
    
    html = '<html>';
    html += '<head>';
    html += '<title>'+winTitle+'</title>';
    html += '</head>';
    html += '<body topmargin="0" marginheight="10" leftmargin="0" marginwidth="10" scroll="no" scrollbars="no">';
    html += '<img src="'+myImage.src+'" onLoad="resizeTo(document.bild.width+20,document.bild.height+60);" name="bild" OnClick="self.close();">';
    html += '</body>';
    html += '</html>';
    
    imgWindow.document.write(html);
}
