
function DisplayFramedPicture ( root_path, pic_path, url )
{
  url_start = '';
  url_end   = '';

  if ( url != '' )
  {
      url_start = '<a href=\"' + url + '\">';
      url_end   = '</a>';
  }

  document.write ( 
  
      '<table border="0" cellpadding="0" cellspacing="0">'
    + '  <tr>'
    + '    <td width=10 height=1                                                          ></td>'
    + '    <td width=1  height=1  background="' + root_path + '/photo/img/dot.gif"        ></td>'
    + '    <td          height=1  background="' + root_path + '/photo/img/dot.gif"        ></td>'
    + '    <td width=1  height=1  background="' + root_path + '/photo/img/dot.gif"        ></td>'
    + '    <td width=10 height=1                                                    ></td>'
    + '  </tr>'
    + '  <tr>'
    + '    <td width=10                                                             ></td>'
    + '    <td width=1            background="' + root_path + '/photo/img/dot.gif"        ></td>'
    + '    <td>' + url_start + '<img border=0 src="' + pic_path + '" alt="">' + url_end + '</td>'
    + '    <td width=1            background="' + root_path + '/photo/img/dot.gif"        ></td>'
    + '    <td width=10           background="' + root_path + '/photo/img/right.gif" valign=top><img src="'
                                                + root_path + '/photo/img/topright.gif" alt=""></td>'
    + '  </tr>'
    + '  <tr>'
    + '    <td width=10 height=1                                                    ></td>'
    + '    <td width=1  height=1  background="' + root_path + '/photo/img/dot.gif"        ></td>'
    + '    <td          height=1  background="' + root_path + '/photo/img/dot.gif"        ></td>'
    + '    <td width=1  height=1  background="' + root_path + '/photo/img/dot.gif"        ></td>'
    + '    <td width=10 height=1  background="' + root_path + '/photo/img/right.gif"      ></td>'
    + '  </tr>'
    + '  <tr>'
    + '    <td          height=10                                                   ></td>'
    + '    <td width=10 colspan=2 background="' + root_path + '/photo/img/bottom.gif"><img src="' 
                                                + root_path + '/photo/img/bottomleft.gif" alt=""></td>'
    + '    <td          colspan=2 background="' + root_path + '/photo/img/bottomright.gif"></td>'
    + '  </tr>'
    + '</table>' )
}
