
function showLiveChat() {

	var lang 		= (document.location.href.indexOf("/french/") != -1) ? "fr" : "en";
	var language	= (lang == "fr") ? "french" : "english";
	
	if (language == "french") {
		window.open('https://www.chat.gm.ca/netagent/gm_cimlogin.aspx?questid=4E802468-F7B6-421E-88CE-E16D2DE3159C&portid=DC8289AB-2EC3-4C7B-9C75-227D5CBE84A5&nareferer='+escape(document.location),'_blank','resizable= yes,width=581,height=437,scrollbars=yes');
		} else {
		window.open('https://www.chat.gm.ca/netagent/gm_cimlogin.aspx?questid=B48A46EB-FCA2-43E7-8CB0-9773F8A24F52&portid=6BFEECF2-8F19-4FA5-A25E-255E1E161697&nareferer='+escape(document.location),'_blank','resizable= yes,width=581,height=437,scrollbars=yes');
	}
	return false;
}

window.onload = function() {

	var liveChat = document.getElementById("live_chat");
	if (liveChat !== null) {
		liveChat.onclick = showLiveChat;
		if (liveChat.captureEvents) {
			liveChat.captureEvents(Event.CLICK);
		}
	}

};

