function popup_image(ulid,label,w,h)
{
  new_window = window.open('','','width='+w+',height='+h+',resizable=no,'+
               'menubar=no,locationbar=no,hotkeys=no,status=no,scrollbars=no');
  new_window.document.open();
  new_window.document.write('<html><head><title>'+label+'</title><meta '+
    'http-equiv="imagetoolbar" content="false"></head><body MARGINWIDTH="0" '+
    'MARGINHEIGHT="0" LEFTMARGIN="0" TOPMARGIN="0">');
  new_window.document.write('<a href="javascript:window.close()"><img src="'+
    '/images/'+ulid+'.jpeg?width='+w+'&amp;height='+h+'" alt="'+label+'" border="0"></a>');
  new_window.document.write('</body></html>');
  new_window.document.close();
}

