function show_commentForm(id){
	
document.write("                  <table width=\"100%\"  border=\"0\" cellpadding=\"2\" cellspacing=\"1\">");
document.write("                    <form action=\"../comment_cms.asp\" method=\"post\" name=\"comment\" onsubmit=\"    if(content.value=='') { content.focus(); alert('评论内容不能为空！'); return false; }    if(content.value.length>5000) { content.focus(); alert('评论内容字数超过5000！'); return false; }    if(username.value=='') { username.focus(); alert('昵称不能为空！'); return false; }    if(email.value=='') { email.focus(); alert('邮箱地址不能为空！'); return false; }    return true;  \" >");
document.write("                      <input name=\"ID\" type=\"hidden\" value=\"" + id + "\">");
document.write("                      <tr>");
document.write("                        <td align=\"right\" bgcolor=\"#FAFAFA\">昵称：</td>");
document.write("                        <td bgcolor=\"#FAFAFA\"><input name=\"username\" type=\"text\" id=\"username\" ");
document.write("size=\"45\" maxlength=\"20\">");
document.write("                          <font color=\"red\">!</font></td>");
document.write("                      </tr>");
document.write("                      <tr>");
document.write("                        <td align=\"right\" bgcolor=\"#FAFAFA\">邮箱：</td>");
document.write("                        <td bgcolor=\"#FAFAFA\"><input name=\"email\" type=\"text\" id=\"email\" size=\"45");
document.write("<br />");
document.write("\" ");
document.write("maxlength=\"50\">");
document.write("                          <font color=\"red\">!</font></td>");
document.write("                      </tr>");
document.write("                      <tr>");
document.write("                        <td align=\"right\" bgcolor=\"#FAFAFA\">评分：</td>");
document.write("                        <td bgcolor=\"#FAFAFA\"><input type=\"radio\" name=\"Grade\" value=\"100\">100");
document.write("                          <input type=\"radio\" name=\"Grade\" value=\"85\" checked>85分");
document.write("                          <input type=\"radio\" name=\"Grade\" value=\"70\">70分");
document.write("                          <input type=\"radio\" name=\"Grade\" value=\"55\">55分");
document.write("                          <input type=\"radio\" name=\"Grade\" value=\"40\">40分");
document.write("                          <input type=\"radio\" name=\"Grade\" value=\"25\">25分");
document.write("                          <input type=\"radio\" name=\"Grade\" value=\"10\">10分");
document.write("                          <input type=\"radio\" name=\"Grade\" value=\"1\">1分</td>");
document.write("                      </tr>");
document.write("                      <tr>");
document.write("                        <td align=\"right\" bgcolor=\"#FAFAFA\">内容：</td>");
document.write("                        <td bgcolor=\"#FAFAFA\"><textarea name=\"content\" cols=\"60\" rows=\"7\" ");
document.write("id=\"content\"></textarea>");
document.write("                          <font color=\"red\">!</font></td>");
document.write("                      </tr>");
document.write("                      <tr>");
document.write("                        <td align=\"right\" bgcolor=\"#FAFAFA\">&nbsp;</td>");
document.write("                        <td bgcolor=\"#FAFAFA\"><input type=\"submit\" name=\"Submit\" value=\"提交评论\">");
document.write("                          <input name=\"SendMaster\" type=\"checkbox\" id=\"SendMaster\" value=\"yes\">");
document.write("                          通知网站管理员</td>");
document.write("                      </tr>");
document.write("                    </FORM>");
document.write("                  </table>");

}