var IfengAppCmt = {
	encoding:'utf-8',
	author:'kewenxing',
	date:'2008.3.10'
};

(function(){
	//截取字符串
	IfengAppCmt.substr = function(s, d) {
		if(typeof(s)=='undefined'||s.length==0){
			return '';
		}
		if(s.length>d){
			return s.substr(0, d)+'...';
		}else{
			return s;
		}
	}
	
    IfengAppCmt.callBack = function(){
		for( var k in commentlist.commentList) {
			//content
			var index = parseInt(k) + 1;
			var _td = document.getElementById("cmt" + index);
			if (_td != null) {
				var str = "";
				str += '<table width="401" height="277" border="0" cellpadding="0" cellspacing="0">';
				str += '<tr>';
				str += '  <td width="28" height="42">&nbsp;</td>';
				str += '  <td width="373" align="center"><span class="title" id="title1">'+IfengAppCmt.substr(commentlist.commentList[k].COMDETAIL, 19)+'</span></td>';
				str += '</tr>';
				str += '<tr>';
				str += '  <td height="143">&nbsp;</td>';
				str += '  <td valign="top" class="txt01">'+IfengAppCmt.substr(commentlist.commentList[k].COMDETAIL, 200)+'<a href="http://cmt.ifeng.com/viewcmts.do?docName='+encodeURI(commentlist.commentList[k].docName)+'&docUrl='+encodeURI(commentlist.commentList[k].docUrl)+'&cmtId='+commentlist.commentList[k].ID+'&fromReply=true" target="_blank">【详情】</a><br /></td>';
				str += '</tr>';
				str += '<tr>';
				str += '  <td height="59">&nbsp;</td>';
				str += ' <td valign="top"><table width="125" height="58" border="0" align="right" cellpadding="0" cellspacing="0"  style="background:url(http://img.ifeng.com/tres/news/news_taiwan_spectial_maxie_aobu_aobu_up.jpg) no-repeat left">';
				str += '    <tr>';
				str += '      <td width="9" height="33">&nbsp;</td>';
				str += '      <td width="78"  align="center" class="num"><span id="c-'+commentlist.commentList[k].ID+'-a">'+commentlist.commentList[k].UPTIMES+'</span></td>';
				str += '      <td width="38">&nbsp;</td>';
				str += '    </tr>';
				str += '    <tr>';
				str += '      <td height="25">&nbsp;</td>';
				str += '      <td><a href="javascript:;" onclick="javascript:sp(this, '+commentlist.commentList[k].ID+'); return false;"><img src="http://img.ifeng.com/tres/news/news_taiwan_spectial_maxie_aobu_dot.gif" width="78" height="22" border="0" /></a></td>';
				str += '      <td>&nbsp;</td>';
				str += '    </tr>';
				str += '  </table></td>';
				str += '</tr>';
				str += '</table>';
				_td.innerHTML = str;
			}
			
			//subcontent
			var _subList = document.getElementById("subList" + index);
			str = "";
			if (_subList != null && commentlist.commentList[k].subList != null) {
				for (var i in commentlist.commentList[k].subList) {
					str += '<table width="494" height="78" border="0" cellpadding="0" cellspacing="0">';
					str += '<tr>';
					str += '<td width="40" height="10"></td>';
					str += '<td width="454"></td>';
					str += '</tr>';
					str += '<tr>';
					str += '<td height="48">&nbsp;</td>';
					str += '<td valign="top" class="txt02">'+IfengAppCmt.substr(commentlist.commentList[k].subList[i].COMDETAIL,60)+'<a href="http://cmt.ifeng.com/viewcmts.do?docName='+encodeURI(commentlist.commentList[k].subList[i].docName)+'&docUrl='+encodeURI(commentlist.commentList[k].subList[i].docUrl)+'&cmtId='+commentlist.commentList[k].subList[i].ID+'&fromReply=true" target="_blank">【详情】</a></td>';
					str += '</tr>';
					str += '<tr>';
					str += '<td height="23">&nbsp;</td>';
					str += '<td><table width="454" height="21" border="0" cellpadding="0" cellspacing="0">';
					str += '	<tr>';
					str += '	  <td width="332" height="21"  style="background:url(http://img.ifeng.com/tres/news/news_taiwan_spectial_maxie_aobu_aobu_line.jpg) no-repeat center">&nbsp;</td>';
					str += '	  <td width="66" align="center" class="num_red"><span id="c-'+commentlist.commentList[k].subList[i].ID+'-a">'+commentlist.commentList[k].subList[i].UPTIMES+'</span></td>';
					str += '	  <td width="56"><a href="javascript:;" onclick="javascript:sp(this, '+commentlist.commentList[k].subList[i].ID+'); return false;"><img src="http://img.ifeng.com/tres/news/news_taiwan_spectial_maxie_aobu_aobu_top.jpg" width="48" height="21" border="0" /></a></td>';
					str += '	</tr>';
					str += '</table></td>';
					str += '</tr>';
					str += '</table>';
				}
				_subList.innerHTML = str;
			}
			str = "";
			str += '<table width="494" height="42" border="0" cellpadding="0" cellspacing="0">';
			str += '<tr>';
			str += '<td width="40">&nbsp;</td>';
			str += '<td width="454"><a href="http://cmt.ifeng.com/viewcmts.do?docName='+encodeURI(commentlist.commentList[k].docName)+'&docUrl='+encodeURI(commentlist.commentList[k].docUrl)+'&cmtId='+commentlist.commentList[k].ID+'&fromReply=true" target="_blank"><img src="http://img.ifeng.com/tres/news/news_taiwan_spectial_maxie_aobu_aobu_butt.jpg" width="134" height="40" border="0" /></a></td>';
			str += '</tr>';
			str += '</table>';
			_subList.innerHTML = _subList.innerHTML + str;
		}//end for
	}//end function
 
})();