function ZoomPic(title, w, h, file) {
	var str = "";
	if(w != 0 && h != 0) {
		str = "top=100,left=100,width="+w+",height="+h+",status=0, scrollbars=0";
	}
	var Win = window.open('', '_blank', str);
	Win.document.clear();
	Win.document.writeln('<html>');
	Win.document.writeln('<head>');
	Win.document.writeln('<title>'+title+'</title>');
	//Win.document.writeln('<base href="<?= $baseRef ?>">');
	Win.document.writeln('</head>');
	Win.document.writeln('<body bgcolor="#FFFFFF" style="margin: 0px;">');
	Win.document.writeln('<img style="cursor: pointer" onclick="window.close();" title="Закрыть" src="'+file+'" width="'+w+'" height="'+h+'" border="0" vspace="0">');
	Win.document.writeln('</body>');
	Win.document.writeln('</html>');
	Win.document.close();
	return false
}
