

function BigPic (pic,w,h,tit,alt){
 lf = window.screen.width;
 lf=lf/2-w/2;
 
msgWindow= window.open("about:blank","displayWindow","width="+w+",height="+h+",resizable=0,scrollbars=0, left="+lf+" ");


   msgWindow.document.write
      ("<HEAD><meta http-equiv='Content-Type' content='text/html; charset=utf-8'><TITLE>"+tit+"</TITLE></HEAD>");
   msgWindow.document.write
      ("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' onblur='self.close()'><img src='"+pic+"' alt='??????? ????? ?????'  border='0'></body>");
	   msgWindow.document.close();
	
}
