function popUpPic(pic_src, window_title) {
	params = "top=-10,left=0,width=400,height=400,status=yes,toolbar=no,menubar=no,location=no,directories=no,scrollbars=no";
	popupWin = window.open("","popupWin",params);
	popupWin.focus();
	popupWin.document.open();


	popupWin.document.write("<html><head><title>UkrWin - интернет-магазин товаров для офиса, банковское оборудование.</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("<a href='javascript:closeWindow()'><img src='"+pic_src+"' border=0 alt='Закрыть окно'onload='window.resizeTo(window.document.images[0].width+10, window.document.images[0].height+45)' border=0></a><br>");
	popupWin.document.write("<center>");
  	popupWin.document.write(window_title);
	popupWin.document.write("</center>");
	popupWin.document.write("</body></html><script language='JavaScript' src='scripts/rightkey.js'></script>");
	popupWin.document.close();
}