function showimage( imagesrc, imgtitle, winwidth, winheight )
{
var look='width='+winwidth+',height='+winheight+','
popwin=window.open("","",look)
popwin.document.open()
popwin.document.write('<title>' + imgtitle + ' (klikkre bezár)</title><body><a href="#" onClick="window.close()"><img src="' + imagesrc + '"></a></body>')
popwin.document.close()
}

