function openNew(title, image, width, height) 
{
  NewWin=window.open("", "NewWin", "width=" + width + ",height=" + height + 
    ",location=no,status=no,toolbar=no,menubar=no,scrollbars=no,resizable=no");
  NewWin.resizeTo(width, height);
  NewWin.document.write("<html><head><title>" + title + "</title></head>");
  NewWin.document.write("<body bgcolor='#FFFFFF' style='margin:0pt'>");
  NewWin.document.write("  <table width='100%' height='100%'>");
  NewWin.document.write("    <tr>");
  NewWin.document.write("      <td align='center' valign='center'>");
  NewWin.document.write("        <img src='" + image + "'>");
  NewWin.document.write("      </td>");
  NewWin.document.write("    </tr>");
  NewWin.document.write("  </table>");
  NewWin.document.write("</body></html>");
  NewWin.document.close();
  NewWin.focus();
}