function show_big_img(winnum,title,width,height,imgurl)
{
  im=window.open('','win'+winnum,'top=40,left=40,width='+width+',height='+height+',scrollbars=no,menu=no,status=yes,resizable=no');
  im.focus();
  im.document.open ("text/html");
  im.document.write ('<html><head><script type="text/javascript" language="JavaScript1.1" src="/js/nocopy2.js"></script><title>Фуксии и Фиалки - '+title+'</title></head><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 bgcolor=#ffffff background='+imgurl+'><img src="/images/e.gif" alt="'+title+'" WIDTH='+width+' HEIGHT='+height+'></body></html>');
  im.document.close ();
}

