function photo(img,hgt,wdt,number){
number=number+1;
var doc = '<html><head><title>Photo. Click to close window.</title>' + '<style>body{overflow: hidden;margin:0;}img{border:0;}</style>' + '</head><body><a href="javascript:self.close()">' + '<img alt="Click to close window" id="image" src="' + img + '" /></a></body></html>';
popup = window.open('', number, 'HEIGHT='+ hgt + ',WIDTH=' + wdt + ',resizable=no,scrollbars=no');
popup.document.write(doc);
popup.document.close();
}

