function popUpPic(pic_src, window_title) {
	params = "top=50,left=50,width=50,height=50,status=yes,toolbar=no,menubar=no,location=no,directories=no,resizable=yes,scrollbars=no";
	popupWin = window.open("","popupWin",params);
	popupWin.focus();
	popupWin.document.open();
	popupWin.document.write("<html><head><title>Изображение</title>");
	popupWin.document.write("<scri"+"pt language = JavaScript>");
	popupWin.document.write("function closeWindow() {");
	popupWin.document.write("window.close();}");
	popupWin.document.write("</scr"+"ipt>");
	popupWin.document.write("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
	popupWin.document.write("<div align='center'><center><table border='0' cellpadding='0' cellspacing='0' width=100% height=100%><tr><td><p align='center'>");
	popupWin.document.write("<a href='javascript:closeWindow()'><img src='"+pic_src+"' border=0 alt='Закрыть окно'onload='window.resizeTo(window.document.images[0].width+40, window.document.images[0].height+80)' border=0></a>");
	popupWin.document.write("");
  	popupWin.document.write(window_title);
	popupWin.document.write("</td></tr></table></center></div>");
	popupWin.document.write("</body></html><script language='JavaScript' src='scripts/rightkey.js'></script>");
	popupWin.document.close();
}
