function popimage(imagesrc,winwidth,winheight){
var winl = (screen.width - winwidth) / 2;
var wint = (screen.height - winheight) / 2;
var look='width='+winwidth+',height='+winheight+',top='+wint+',left='+winl+''
popwin=window.open("","",look)
popwin.document.open()
popwin.document.write('<title>Illustration</title><body leftmargin="0" bottommargin="0" marginheight="0" marginwidth="0" rightmargin="0" topmargin="0"><a href="javascript:window.close()"><img src="'+imagesrc+'" title="Schließen" border="0"></a></body>')
popwin.document.close()
}