function ShowImage(url,width,height,title,alt)
{
   if (window.winOp) { if (!winOp.closed) winOp.close ()};
   winOp = open("","_blank","directories=no,fullscreen=no,location=no,menubar=no,status=no,titlebar=no,toolbar=no,resizable=no,scrollbars=no,width="+(width)+",height="+(height),true);
   winOp.document.write("<HTML><HEAD><META HTTP-EQUIV=\"Content-Type\" CONTENT=\"text/html; charset=windows-1251\"><TITLE>"+title+"</TITLE></HEAD><BODY topmargin=0 marginwidth=0 marginheight=0 leftmargin=0><img src=\""+url+"\" alt=\""+alt+"\"></BODY></HTML>");
   return false;
}
