function showMsgInput(){
if(document.getElementById("personalMsgShow").style.display=='block'){
document.getElementById("personalMsgShow").style.display='none';
document.getElementById("personalMsgInput").style.display='block';
}else{
document.getElementById("personalMsgShow").style.display='block';
document.getElementById("personalMsgInput").style.display='none';
}
}
var defaultPersonalMsg='在這裡打上你想說的話或你正在做的事';
function changePersonalMsgInput(){
var PMInput=document.getElementById("personalMsgInputText");
if (PMInput.value==defaultPersonalMsg) PMInput.value='藍天正在';
}
var personalMsgXHR=getXHRObj();
var persoanlMsg=getXHRObj();
var personalmsg_sync=0;
function postPersonalMsg(){
persoanlMsgStr=document.getElementById("personalMsgInputText").value;
if (defaultPersonalMsg==persoanlMsgStr||persoanlMsgStr=='') {
alert('請先填寫個人狀態');
return false;
}