 function popup(url,img_h,img_v,caption)
  {
      img_h_space  = 20;
      img_v_space  = 75;
      window_h     = parseInt(img_h) + img_h_space;
      window_v     = parseInt(img_v) + img_v_space;
      options      = 'toolbar=0' +
                     ',status=0' +
                     ',menubar=0' +
                     ',scrollbars=0' +
                     ',resizable=0' +
                     ',width=' + window_h +
                     ',height=' + window_v;
      img_tag      = "<img src='"+url+"' width='"+img_h+"' height='"+img_v+"'>";

      content      =
        "<html><title></title><body background='images/bg_lgrey040.jpg'><center>" +
        img_tag + "<br clear=all><font color='Blue'><b>" + caption + "</b></font>" +
        "<table align='center' border='0'><tr><td><form><input type='button' name='' value='Close Window' onClick='top.close()'></form></td></tr></table>" +
        "</center></body></html>";
   
      body         = window.open("","content",options);
      body.document.write(content);
  }


