// JavaScript Document
var sPath = window.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
		
		function toFrench()
		{
			window.location.href = "http://www.ritzcarltonmontreal.com/fr/" + sPage;
		}
		
		function toEnglish()
		{
			window.location.href = "http://www.ritzcarltonmontreal.com/" + sPage;
		}