//ver 1.1
//dir = 'images/cat/';
function _show_img_ (the_URL,w,h) {
 if(eval(w)>800 | eval(h)>600){
     //winimgx=window.open(the_URL,'Info','scrollbars=yes,resizable=yes,width=800,height=600');
     winimgx=window.open('','Info','scrollbars=yes,resizable=yes,width=800,height=600');
winimgx.document.writeln("<HTML><HEAD>");
winimgx.document.writeln("<META http-equiv=Content-Type content=\"text/html; charset=unicode\"><LINK href=\"style.css\" rel=stylesheet>");
winimgx.document.writeln("</HEAD>");
winimgx.document.writeln("<BODY><TABLE cellSpacing=0 cellPadding=0 width=\"1%\" border=1>");
winimgx.document.writeln("<TR><TD align=center><IMG border=0 src=\""+the_URL+"\"></TD>");
winimgx.document.writeln("</TR></TABLE></BODY></HTML>");
     winimgx.focus();
 }
 else if(w){
     det = 'resizable=no, scrollbars=no,width='+(24+eval(w))+',height='+(32+eval(h));
     winimgx=window.open('','Info', det);
     if(winimgx.im)winimgx.close();

     winimgx=window.open('','Info', det);
winimgx.document.writeln("<HTML><HEAD>");
winimgx.document.writeln("<META http-equiv=Content-Type content=\"text/html; charset=unicode\"><LINK href=\"style.css\" rel=stylesheet>");
winimgx.document.writeln("</HEAD>");
winimgx.document.writeln("<BODY><TABLE cellSpacing=0 cellPadding=0 width=\"1%\" border=1>");
winimgx.document.writeln("<TR><TD align=center><a href=\"javascript:window.close()\"><IMG name=im border=0 alt='закрыть окно\n-----------------------\n close window'src=\""+the_URL+"\"></a></TD>");
winimgx.document.writeln("</TR></TABLE></BODY></HTML>");
     winimgx.focus();
 }
 else {
     winimgx=window.open(the_URL,'Info','scrollbars=yes,resizable=yes,width=650,height=550');
     winimgx.focus();
 }
}


