// switch_lang.js
// Anthony Ryan Alvarade
// Last updated: April 2, 2002

function SwitchToEnglish(theUrl) {
	setCookie("language", "english", null, "/");
	location.href = theUrl;
}

function SwitchToFrench(theUrl) {
	setCookie("language", "french", null, "/");
	location.href = theUrl;
}
