// JavaScript Document

function chatcom() {
	var openCom = document.getElementById('chatcomlist').style.display;
	if (!openCom == "block"){
	document.getElementById('chatcomlist').style.display = "block";
	}else{
	document.getElementById('chatcomlist').style.display = "none";
	};
};

