		function imagePopUp(obj,w,h)
			{
				 newWindow = window.open("","", "status=0, TOP=200, LEFT=200,toolbar=0,location=0,status=0,menubar=0,resizable=0, HEIGHT="+h+",WIDTH="+w);
				 newWindow.document.write("<html><head><title>Просмотр изображения</title></head><body style=\'padding:0;margin:0;\'>");
				 newWindow.document.write("<img src="+obj.src+" width="+w+" height="+h+" style=\'cursor:pointer\' onclick=\'window.close()\' alt=\'Закрыть изображение\'>");
				 newWindow.document.write("</body></html>");
				 newWindow.document.close();
			}
						function imagePopUp1(obj,w,h)
			{

newWindow = window.open("","", "status=0, TOP=200, LEFT=200,location=0,status=0,menubar=0,resizable=0,HEIGHT="+h+",WIDTH="+w);
				 newWindow.document.write("<html><head><title>Просмотр изображения</title></head><body style=\'padding:0;margin:0;\'>");
				 newWindow.document.write("<img src="+obj+" width="+w+" height="+h+" style=\'cursor:pointer\' onclick=\'window.close()\' alt=\'Закрыть изображение\'>");
				 newWindow.document.write("</body></html>");
				 newWindow.document.close();
			}

