function show_image(imgTitle,imgDesc,imgSrc,windowWidth,windowHeight,windowName)
{
	msg=open('', windowName, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+(windowWidth)+',height='+(windowHeight+41));
	msg.document.clear();
	msg.document.write('<html><head><title>'+imgTitle+'</title>');
	msg.document.write('<link rel=stylesheet href="style.css" type="text/css">');
	msg.document.write('</head><body bgcolor="#bebe9c" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0" bottommargin="0" rightmargin="0">');
	msg.document.write('<table border="0" width="'+windowWidth+'" cellpadding="0" cellspacing="0">');
	msg.document.write('<tr align="left" valign="top">');
	msg.document.write('<td colspan="2"><a href="#" onClick="window.close();"><img src="'+imgSrc+'" alt="'+imgTitle+'" width="'+windowWidth+'" height="'+windowHeight+'" border=0></a></td>');
	msg.document.write('</tr>');
	msg.document.write('<tr align="left" valign="top">');
	msg.document.write('<td colspan="2" height="1" background="images/m_linia_h.gif"><img src="images/1x1.gif" width="1" height="1"></td>');
	msg.document.write('</tr>');
	msg.document.write('<tr align="left" valign="middle">');
	msg.document.write('<td width="15"><img src="images/1x1l.gif" width="6" height="40"></td>');	
	msg.document.write('<td width="'+(windowWidth - 15)+'"><small><strong>'+imgDesc+'</strong></small></td>');
	msg.document.write('</tr>');
	msg.document.write('</table>');
  	msg.document.write('</body></html>');
	msg.document.close();
}