function showBMP(pic) 
{
if (window.Okno != null) window.Okno.close() 

Okno=window.open("","xxx","width=600, height=510, scrollbars=no, resizable=no")
Okno.document.open()
Okno.document.writeln("<html>")
Okno.document.writeln("<head>")
Okno.document.writeln("<title>DAKO-CZ</title>")
Okno.document.writeln('</head>')
Okno.document.writeln('<body onclick="window.close()" onblur="window.close()" style="margin:0">')
Okno.document.write('<img src="../img/zahlavi.gif" border="0">')
Okno.document.write('<br><img src="')
Okno.document.write(pic)
Okno.document.write('" border="0">')
Okno.document.writeln('</body>')
Okno.document.writeln('</html>')
Okno.document.close()
}

function showDWF(dwf)
{
if (window.Okno != null) window.Okno.close() 

Okno=window.open("","xxx"," resizable=yes")
Okno.document.open()
Okno.document.writeln("<html>")
Okno.document.writeln("<head>")
Okno.document.writeln("<title>DAKO-CZ DWF Viewer</title>")
Okno.document.writeln('</head>')
Okno.document.writeln('<body style="margin:0">')

Okno.document.writeln('<OBJECT codeBase="http://www.autodesk.com/global/dwfviewer/installer/DwfViewerSetup.cab#version=5,0,0,x"')
Okno.document.writeln('height="100%" width="100%" classid="clsid:A662DA7E-CCB7-4743-B71A-D817F6D575DF" VIEWASTEXT>')
Okno.document.write('<PARAM NAME="Src" VALUE="http://www.dako-cz.cz/prod/')
Okno.document.write(dwf)
Okno.document.writeln('">')
Okno.document.writeln('</OBJECT>')

Okno.document.writeln('</body>')
Okno.document.writeln('</html>')
Okno.document.close()
}
