﻿
function updateinput(type,id,cheValid,validCode,check,title,content,userName){

    var i;
    if(type=="1"||type=="2"){
        i=b_newsCommetBLLBase.UpdateComment(type,cheValid,validCode,check,userName,id,title,content).value;
    }
    else if(type=="3"){
        //i=b_ZTCommetBLLBase.UpdateComment(cheValid,validCode,check,userName,id,title,content).value;
    }
    if(i=="-1"){
        alert("验证码不正确!请重新输入!");
        return false;
    }
    if(i=="0"){
        alert("评论提交失败!");
        return false;
    }
    else
    {
       
       if(type=="1"&&i!='null')
       {
          alert("评论提交成功!");
          document.getElementById("commList").innerHTML=i;
       }
       if(type=="2"&&i!='null')
       {
          url='commList_'+id+'_EDFB5CC3C463DDFA.html'
          window.location.href=url;
       }
    }
    //if(i=="1"){
       // var l=history.length;
        //history.go(-l);
        //window.location.href=htmlUrl;
}


function updateviewtimes(id){
   var i=news.UpdateNewsReadTimes(id).value;
}
function rePl(tiID)
{
   ti=document.getElementById("txtTitle");
   ti.value='Re:'+document.getElementById(tiID).innerHTML;
   ti.focus();
}