﻿

function SaveShout(intUserId)
{
var shoutContent=document.getElementById("tShout").value;
if(ClaAccount.SaveShout(intUserId,shoutContent))
{
document.getElementById("tShout").value='';
//window.location.href=window.location.href+"#";
}
else
{
alert("发表失败");
}

}

function SaveShouti(intUserId)
{
var shoutContent=document.getElementById("tShouti").value;
if(ClaAccount.SaveShout(intUserId,shoutContent))
{
document.getElementById("tShouti").value='';
//window.location.href=window.location.href+"#";
}
else
{
alert("发表失败");
}

}


//礼物
function SetToUser(objTD,toUser)
{
document.getElementById("NavSendUser").innerHTML=objTD.innerHTML;
document.getElementById("txtToUser").value=toUser;
}


function ResetToUser()
{
document.getElementById("NavSendUser").innerHTML=ClaAccount.GetMyVisited().value;
document.getElementById("txtToUser").value='';
}

