﻿function openLiveChat() {
	window.open('http://www.microsoft.com/communities/chats/chatrooms/future.aspx', 'livechat', 'width=850,height=608'); //,features=replace
}

function notifyLive() {
	if (setLiveToolTip != undefined) setLiveToolTip(true);
}
function notifyOffline() {
	if (setLiveToolTip != undefined) setLiveToolTip(false);
}


function notifyOnline(id) {
	var element = document.getElementById('onlineribbon_'+id);
	if (element != undefined) element.style.visibility = 'visible';
}


