/**
 * This file holds functions related to the language bar (languages drop-down menu with flags) in the header
 */

function onChooseLanguage(lang, url) {
	var cookieName = "143_LANG";
	var cookieValue = lang;
	var periodType = "years";
	var offset = 10;
	var domain = "www.freeridegames.com";
	bEscape = true;
	
	setPersistentCookie (cookieName, cookieValue, periodType, offset, domain, bEscape);
	window.location.href = url;
} 
