<!--
function imgOpen(imgURL,imgWidth,imgHeight,Title)
{
var
imgWndw=window.open('','_blank','width='+imgWidth+',height='+imgHeight+',toolbar=no,menubar=no,location=no,status=no,resizable=no,scrollbars=no,top=50,left=50');
var imgTitle=(Title)?Title:imgURL+": "+imgWidth+'x'+imgHeight;
with (imgWndw.document){
  open();
  write('<ht'+'ml><he'+'ad>');
  write ('<ti'+'tle>'+imgTitle+'</ti'+'tle>');
  write('</he'+'ad><bo'+'dy leftmargin=0 topmargin=0 rightmargin=0 onmousedown="if (event.button==2||event.button==3)alert(\'&copy www.one-more.ru\')"'+
    'bottommargin=0 marginwidth=0 marginheight=0 bgcolor="#d9d9d9"><a href=javascript:window.close();><img src="'+imgURL+
    '" width='+imgWidth+' height='+imgHeight+' border=0 '+
    'alt="'+imgTitle+'"></a></bo'+'dy></ht'+'ml>');
  close();
}
return false
}
//-->