function ShowOverlapper(HTML, UseCloseArea){
	SetVisibilityByElementID('_System_OverlapperArea', true);
	HTML='<br><br><span id=\"_System_OverlapperContentArea\" class=\"OverlapperContentArea\">'+HTML+'</span>';
	if(UseCloseArea)HTML='<br><br><span class=\"OverlapperCloserArea\" onclick=\"SetVisibilityByElementID(\'_System_OverlapperArea\', false);\">[ C L O S E ]</span><br><br>'+HTML;
	WriteHTMLByElementID('_System_OverlapperArea', HTML);
}

function OpenChatWindow(ChatRoomID, ChatRoomUUID, WindowName){
	return window.open('./joinchatroom.php?NoHeader&NoFooter&ChatRoomID='+ChatRoomID+'&ChatRoomUUID='+ChatRoomUUID+'', WindowName, 'status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=1,scrollbars=1,width=510,height=370');
}

function setBusinessSpecificQ(BusinessCategoryID, BusinessQuestionSectionID, ContainerID){
	var BusinessSpecificSection = HTTPRequest('index.php?Script=getbusinessspeceficquestion&MainContentOnly&BusinessCategoryID='+BusinessCategoryID+'&BusinessQuestionSectionID='+BusinessQuestionSectionID, 'GET', false);
	document.getElementById(ContainerID).innerHTML = BusinessSpecificSection;
}
