﻿function showReply(){document.documentElement.scrollTop=0;var oReply=$$("div");oReply.id="d_reply";document.body.appendChild(oReply);var oTab=$$("table");oTab.id="d_table";var oCaption=oTab.createCaption();oCaption.appendChild($T("请不要发布色情,反动等违法言论"));var oR=oTab.insertRow(0);var oC=oR.insertCell(0);oC.appendChild($T("姓名:"));oC=oR.insertCell(1);var oI=$$("input");oI.setAttribute("type","text");oC.appendChild(oI);oR=oTab.insertRow(1);oC=oR.insertCell(0);oC.appendChild($T("正文"));oC=oR.insertCell(1);oI=$$("textarea");oI.rows=8;oI.cols=30;oC.appendChild(oI);oR=oTab.insertRow(2);oC=oR.insertCell(0);oC.colSpan=2;oI=$$("a");oI.href="javascript:apply()";oI.appendChild($T("提交"));oC.appendChild(oI);oI=$$("a");oI.href="javascript:close()";oI.appendChild($T("返回"));oC.appendChild(oI);var w;if(window.innerWidth){w=window.innerWidth;}else{w=document.body.offsetWidth;}oTab.style.left=w/2-200+"px";document.body.appendChild(oTab);}function close(){$("d_reply").parentNode.removeChild($("d_reply"));$("d_table").parentNode.removeChild($("d_table"));}var ajax3=new Ajax();function apply(){var text=$S("textarea",$("d_table"))[0].value;if(text.length==0){alert("评论内容不能为空!");return;}var name=$S("input",$("d_table"))[0].value;if(name.length>10){alert("姓名不能超过10个字!");return;}var aid=$("hideId").firstChild.nodeValue;var url="../../ajax/addarticlereply.ashx";ajax3.execute(url,"name="+name+"&aid="+aid+"&text="+text,"post",apply2);}function apply2(){if(ajax3.getState()==4){if(ajax3.getStatus()==200){var xmlDoc=ajax3.getText();if(xmlDoc=="ok"){var oA=$("replycount");oA.innerHTML=parseInt(oA.innerHTML)+1;alert("发表成功!");close();}else{alert("评论失败:"+xmlDoc);return false;}}}}