function showPic(picfilename)
{
var wnd = window.open('','','resizable=yes,scrollbars=yes,location=no,menubar=no,status=no,toolbar=no,titlebar=no,width=640,height=400,left=50,top=50')
with (wnd.document)
{
writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">')
writeln('<html xmlns="http://www.w3.org/1999/xhtml" lang="ru" xml:lang="ru">')
writeln('<head><title>Picture</title>')
writeln('<meta name="content-type" content="text/html; charset=UTF-8" />')
writeln('<style type="text/css">')
writeln('body { margin: 0px; font-size: small; }')
writeln('</style>')
writeln('<script type="text/javascript">')
writeln('function checkImageLoad() {')
writeln('var pic = document.getElementById("pic");')
writeln('var mess = document.getElementById("mess");')
writeln('window.resizeTo(pic.width + 32, pic.height + 96)')
writeln('pic.style.display = "block"; ')
writeln('}')
writeln('</script>')
writeln('</head>')
writeln('<body onload="self.focus()">')
writeln('<div class="image" align="center"><a title="Close the window" href="javascript:window.close();">')
writeln('<img alt="Загрузка..." id="pic" src="/pics/'+picfilename+'" border="0" onload="checkImageLoad()" /> </a></div>')
writeln('<div align="center"><a title="Close the window"')
writeln('	href="javascript:window.close();">Close the window</a></div>')
writeln('</body></html>')
}
wnd.focus()
}



function show_part_image(picfilename)
{
var wnd = window.open('','','resizable=yes,scrollbars=yes,location=no,menubar=no,status=no,toolbar=no,titlebar=no,width=640,height=400,left=50,top=50')
with (wnd.document)
{
writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">')
writeln('<html xmlns="http://www.w3.org/1999/xhtml" lang="ru" xml:lang="ru">')
writeln('<head><title>Picture</title>')
writeln('<meta name="content-type" content="text/html; charset=UTF-8" />')
writeln('<style type="text/css">')
writeln('body { margin: 0px; font-size: small; }')
writeln('</style>')
writeln('<script type="text/javascript">')
writeln('function checkImageLoad() {')
writeln('var pic = document.getElementById("pic");')
writeln('var mess = document.getElementById("mess");')
writeln('window.resizeTo(pic.width + 32, pic.height + 96)')
writeln('pic.style.display = "block"; ')
writeln('}')
writeln('</script>')
writeln('</head>')
writeln('<body onload="self.focus()">')
writeln('<div class="image" align="center"><a title="Close the window" href="javascript:window.close();">')
writeln('<img alt="Загрузка..." id="pic" src="'+picfilename+'" border="0" onload="checkImageLoad()" /> </a></div>')
writeln('<div align="center"><a title="Close the window"')
writeln('	href="javascript:window.close();">Close the window</a></div>')
writeln('</body></html>')
}
wnd.focus()
}
