function openForum()
{
    forumWin=window.open('/main/event/hotcategory/message.htm','forum', 'toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=518,height=580');
    forumWin.focus();
}
function Show_Stuff(Click_Menu){
	if (document.getElementById(Click_Menu).style.display == "none") {
		document.getElementById(Click_Menu).style.display = "";
	} else {
		document.getElementById(Click_Menu).style.display = "none";
	}
}