  function CreateWindow(full_pict, description, width, height)
  {
    var full_content=""+
    "<HTML>"+
    "<BODY style='margin: 0 0 0 0;' onclick='window.close();'>"+
    "<TABLE cellpadding='0' cellspacing='0' align='center' border='0' bgcolor='#ffffff' style='padding: 0 0 0 0; background-repeat: vertical;' width='100%' height='100%'>"+
    "  <TR>"+
    "    <TD align='center' style='padding: 20 0 10 0;' valign='center'><IMG width='185' height='72' src='/images/tm.PNG' align='middle'></TD>"+
    "  </TR>"+
    "  <TR>"+
    "    <TD align='center' valign='top'><IMG src='" + full_pict + "' width='"+width+"' height='"+height+"' align='middle'></TD>"+
    "  </TR>"+
    "  <TR>"+
    "    <TD style='padding: 20 20 20 20; font-family: verdana; font-size: 11; color: #1e428c;' height='100%' align='center' valign='top'>" + description + "</TD>"+
    "  </TR>"+
    "</TABLE>"+
    "</BODY>"+
    "</HTML>";
    var param = 'width='+(width+50)+', height='+(height+150)+', left=100, top=20, location=no, menubar=no, resizable=yes, status=no';
    var w=window.open('', '', param, false);
    w.document.open();
    w.document.write(full_content);
    w.document.close();
  }
