function showImage(url,width,height,title)
{
	image="<a href=\"javascript:window.close()\"><img src=\""+url+"\" border=\"0\" alt=\"Fenster schließen\"></a>"; 
    popupwin=window.open("about:blank","pics","'toolbar=no,location=no,directories=no,status=no,menubar=no,top=50,left=200,width="+width+",height="+height);
    popupwin.document.write("<HTML><HEAD><TITLE>"+title+"</TITLE></HEAD><BODY BGCOLOR=\"#ffffff\" topmargin=0 leftmargin=0 marginwidth=0 marginheight=0><CENTER>"+image+"</CENTER></BODY></HTML>");
    popupwin.document.close();
}
