function zoom(src,w,h) {
        html='<html><head><title>Иллюстрация</title>'+'</head><body bgcolor=#FFFFFF leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onload="focus()">'+
		'<div align="center"><a href="" onClick="window.close();return false;"><img align="absmiddle" hspace="10"  vspace="10" src="'+src+'" border=0 title="Чтобы закрыть картинку &#151; кликните в неё"></a></div></body></html>';
		w = w+40;
		h = h+30;
		win=window.open('','_blank','width='+w+',height='+h+',toolbar=no,scrollbars=yes,status=no,resizable=yes');
        win.document.open();
        win.document.write(html);
        win.document.close(); 
} 

function zoom(src,w,h,title) {
        html='<html><head><title>Иллюстрация</title>'+'</head><body bgcolor=#FFFFFF leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onload="focus()">'+
		'<div align="center"><a href="" onClick="window.close();return false;"><img align="absmiddle" hspace="10"  vspace="10" src="'+src+'" border=0 title="Чтобы закрыть картинку &#151; кликните в неё"></a>';
	if (title != null){
		html = html+'<br><font size="-1">'+title+'</font>';
	}
html = html+'</div></body></html>';
		w = w+40;
		h = h+50;
		win=window.open('','_blank','width='+w+',height='+h+',toolbar=no,scrollbars=yes,status=no,resizable=yes');
        win.document.open();
        win.document.write(html);
        win.document.close(); 
} 

function BigPhoto(w,h,src,title){
	zoom(src, w,h,title);
}