function popup_detail(filename,title,alt,w,h)
{
    Fenster = window.open('','','width='+w+',height='+h+',resizable=no,menubar=no,locationbar=no,hotkeys=no,status=no,scrollbars=no');
    Fenster.document.open();
    Fenster.document.write("<html><head><title>"+title+"</title><meta http-equiv=\"imagetoolbar\" content=\"false\"></head><body MARGINWIDTH=\"0\" MARGINHEIGHT=\"0\" LEFTMARGIN=\"0\" TOPMARGIN=\"0\">");
    Fenster.document.write("<a href=\"javascript:window.close()\"><img src=\""+filename+"\" alt=\""+alt+"\" height=\""+h+"\" width=\""+w+"\" border=\"0\"></a>");
    Fenster.document.write("</body></html>");
    Fenster.document.close();
}

// ---------------------------------------------------------------------------------------------------------
