function chkNotice(){
	var notice = document.getElementById("notice");
	if (notice.innerHTML.length<2) { 
		notice.style.display = "none"; 
		//notice.style.border = "none";
	} else {
		notice.style.display = "inline";
	}
}

