
function OpenImage(filename, title, width, height)
{
	wi = Math.floor(Math.random() * 1000) + 1000
	ImageWindow = window.open('', wi.toString(), 'status=no,width='+width.toString()+',height='+height.toString()+',resizable=no,menubar=no,scrollbars=no,toolbar=no')
	ImageWindow.document.write('<html><head><title>'+title+'</title></head><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>')
	ImageWindow.document.write('<a href="#" onclick="window.close()"><img src="'+filename+'" width='+width.toString()+' height='+height.toString()+' border=0 alt="Kliknutím zavøete"></a><br>')
	ImageWindow.document.write('</body></html>')
}



