function movepic(img_name,img_src)
 {
document[img_name].src=img_src;
}

 function OpenIllustration(url,w,h)
{
  sampWin= open("", "displayWindow",
    "width="+w+",height="+h+",status=no,toolbar=no,menubar=no,left=0,top=0");
  sampWin.document.open();
  sampWin.document.write("<html><head><title></title>");
  sampWin.document.write("<meta http-equiv='Content-Type' content='text/html; charset=windows-1251'></head><body BGCOLOR=#FFFFFF LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 onBlur='window.close();'> " );
  sampWin.document.write("<a href=javascript:close()><img src='"+url+"' style='border:1px solid black' alt='ÇÀÊÐÛÒÜ ÎÊÍÎ'></a>");
  sampWin.document.write("</body></html>");
  sampWin.document.close();

}
