function showpage(htmlfile, winname){window.open(htmlfile,winname,'menubar,scrollbars,resizable,status,copyhistory,');}
function showimage(progname,imagefile,winname,status,w,h)
{var tooltip_window=null;
if(status!=0){
if(tooltip!=null)tooltip.focus();else{
var tooltip=open('',winname, 'width='+w+',height='+h+',left=10,top=5');
tooltip_window=tooltip;
tooltip.document.open();
tooltip.document.writeln('<html><head><title>Скриншот '+progname+'</title></head><meta http-equiv="content-type" content="text/html; charset=windows-1251"><body text=black bgcolor="#F4F8FF" leftmargin="0" topmargin="0">');
tooltip.document.writeln('<center><img src="'+imagefile+'" border=0 alt="Скриншот '+progname+'"></center>');
tooltip.document.writeln('</body></html>');
tooltip.document.close();}
} else {if(tooltip_window!=null) tooltip_window.close();}}
