function tqChatTipInit(enable) {
	if (enable == true) {
		if ($.browser.mozilla) {
			mTop = doc.clientHeight - 142;
			sTop = doc.clientHeight - 30;
		} else {
			mTop = doc.clientHeight - 142;
			sTop = doc.clientHeight - 30;
		}
	}
}

function setTipShow(position) {
  if (position) {
    $("#mBoxTip").show();
    $("#sBoxTip").hide();
  } else {
    $("#mBoxTip").hide();
    $("#sBoxTip").show();
  }
}
