function zoom(pic, w, h, desk)
{
	zoomWindow = window.open('', '', 'directories=0,height='+(h+50)+',left=200,location=0,menubar=0,resizable=1,scrollbars=1,toolbar=0,status=0,width='+(w+20)+',top=10,copyhistory=0');
	zoomWindow.document.open("text/html");
	zoomWindow.document.write('<head><title>ООО "Подъем Техника"</title><meta name="author" content="Aleksandr Feoktistov"><meta http-equiv="Content-Type" content="text/html; charset=windows-1251">');
	zoomWindow.document.write('<link href="style.css" rel="stylesheet" type="text/css"></head><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>');
	zoomWindow.document.write('<div align="center" class=main>'+desk+'</div>');
	zoomWindow.document.write('<div align="center"><a href=# class=zoom onClick=\"window.close();\"><img src='+pic+' width='+w+' height='+h+' alt="Нажмите, чтобы закрыть окно" title="Нажмите, чтобы закрыть окно" border=0><br>Закрыть окно</a></div>');
	zoomWindow.document.write('</body>');
	zoomWindow.document.close();
	return false;
}