function displayShort(inf,wino,tit) {
var pic = inf.src;

win = window.open('', wino, 'height=1, width=1, scrollbars=NO, toolbar = no, status = no');


win.document.write("<title>" + tit + "</title>");
win.document.write("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'  onBlur='self.close()' >");
win.document.write("<p align='center'><a href='javascript:self.close()'><img src='" + pic + "' border='0'></a></p>");

var iheight = win.document.images[0].height-100;
var iwidth = win.document.images[0].width-100;
win.resizeBy(-iwidth, -iheight);
win.resizeBy(iwidth, iheight);
win.self.focus();
}
