//消息提醒
var htmlTitle=window.document.title ;
var isOnFocus = false;
var titleSet=0
var t=null;
function titleNotice(){
	if ( titleSet==0) {
		t = setInterval("titleTime()",500);
		titleSet=2;
	}
}
function titleTime(){
  if(!isOnFocus){
		if(titleSet==2){
			 window.document.title=htmlTitle + "【新簡訊】";
			 titleSet=1;
		}else{
			window.document.title=htmlTitle;
			titleSet=2;
		}
	}
}
function titleTimeStop(){
	isOnFocus = true;
	if (t) {
		clearInterval(t);
    }
	window.document.title=htmlTitle;
}
titleNotice();