function showBMP(obj) 
{
if (window.Okno != null) window.Okno.close() 

Okno=window.open("","xxx","width=500, height=500, scrollbars=no, resizable=no")
Okno.document.open()
Okno.document.writeln("<html>")
Okno.document.writeln("<head>")
Okno.document.writeln("<title>protechnik consulting</title>")
Okno.document.writeln('</head>')
Okno.document.writeln('<body onclick="window.close()" onblur="window.close()" style="margin: 0; background-color: #c1e0f7">')
Okno.document.writeln('<table width="500px" height="500px" border="0" cellpadding="0" cellspacing="0">')
//Okno.document.writeln('<tr width="100px"><td>')
//Okno.document.write('<img src="/img/detail.jpg">')
//Okno.document.writeln('</td>')
Okno.document.write('<td width="500px" align="center" style="vertical-align: middle">')
Okno.document.write('<img src="')
Okno.document.write(obj.src.substr(0,obj.src.length-4)+'_.jpg')
Okno.document.write('">')
Okno.document.writeln('</td></tr>')
Okno.document.writeln('</table>')
Okno.document.writeln('</body>')
Okno.document.writeln('</html>')
Okno.document.close()
}
