function img(url,w,h){
		var img = new Image();
		img.src = url;
	newWin= open("", "Contents", "width=" + w + ",height=" + h +  'status=no,toolbar=no,menubar=no,directories=no,location=no,resizable=no');
		  newWin.document.open();
		  newWin.document.write("<html><head><title>Просмотр фото</title></head>");
		  newWin.document.write("<body><a  title='Закрыть окно' href='javascript:self.close();'><img  style='border: 0px solid black;' src='" + url +"' /></a></body></html>");
		  newWin.document.close();  
		 
	}
