    function writeTip(name,content){
        tipAttr = '<span style="line-height: 25px;cursor:hand" tip=" \
            <table width=180 border=0 cellspacing=0 cellpadding=0 bgcolor=#FFFFFF> \
            <tr>  \
              <td width=167 style=\'BORDER-bottom: #23649A 1px solid; BORDER-top: #23649A 1px solid; BORDER-left: #23649A 1px solid; BORDER-right: #23649A 1px solid;\' ><table width=100% border=0 cellspacing=0 cellpadding=15> \
                  <tr> \
                    <td class=LL> \
                        <strong><font color=#044474>¼òÀú£º</font></strong>'+content+'<br> \
                      </td> \
                  </tr> \
                </table></td> \
              <td width=4 valign=top bgcolor=#C4C4C4></td> \
            </tr> \
          </table> \
          <table width=180 border=0 cellpadding=0 cellspacing=0 bgcolor=#C4C4C4> \
            <tr> \
              <td></td> \
            </tr> \
            </table>">'+name+'</span>';
            
            document.write(tipAttr);
    }