/* Copyright by Alexander Dudler  www.dudler-web.de */
var name
var h
function displayImage( image, width, height, name )
{
h = height +35
Detail = window.open("", "_blank", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width=" + width +",height=" + h);

Detail.document.open();
Detail.document.write("<HTML><HEAD><TITLE>" + name + "</TITLE></HEAD>");
Detail.document.write("<BODY topmargin=0 leftmargin=0 marginheight=0 marginwidth=0 bgcolor='#cccccc'>");
Detail.document.write("<form>");
Detail.document.write("<IMG SRC='" + image + "' width='" + width + " height='" + height + "' 'alt='' border=0 title=''>");
Detail.document.write("<center>");
Detail.document.write("<input style='width:80%;height:35px;' width='360' height='35' type=button value='schlie&szlig;en' onClick='self.close()'>");
Detail.document.write("</center>");
Detail.document.write("</form>");
Detail.document.write("</BODY></HTML>");
Detail.document.close();
}