function showcompmenu(event) {
	var obj = document.getElementById("complist");
	if (obj.style.display == "inline") {
		obj.style.display = "none";
	} else {
		obj.style.display = "inline";
	}
	return true;
}
