function setTipShow(flag) {
	var value = "";
	if (flag == 0) {	// 小窗口
		value = "min";
		$(".chatBoxMain").hide();
		$(".chatBoxSmall").show();
		$(".chatBoxSmall").floating({targetX:"right", targetY:"bottom"});
	} else {	// 大窗口
		value = "max";
		$(".chatBoxSmall").hide();
		$(".chatBoxMain").show();
		$(".chatBoxMain").floating({targetX:"right", targetY:"bottom"});
	}
	$.get("set_tq_chart_flag.htm",{"hs_indie_chat_flag":value});
}

function showTqBox(tq_chart_flag){
	if (tq_chart_flag.indexOf("min") != -1) {	// 小窗口
		$(".chatBoxMain").hide();
		$(".chatBoxSmall").show();
		$(".chatBoxSmall").floating({targetX:"right", targetY:"bottom"});
	} else {	// 大窗口
		$(".chatBoxSmall").hide();
		$(".chatBoxMain").show();
		$(".chatBoxMain").floating({targetX:"right", targetY:"bottom"});
	}
}



