/**
* Contains all translations related functions
* Revision: $Revision$
*/

/**
* Switches the language cookie
*
* Revision: $Revision$
*/
function translations_switch_language(language, new_url) {

//	alert('Lang > ' + language);

	$.cookie('InterflowSiteLanguage', language, { path: '/', expires: 7 });
	if (typeof new_url == 'undefined' || new_url == null) {
		// window.top needed for changing language in Edit mode where we are nested within a couple of iframes
		window.top.location = window.top.location;
	}
	else {
		window.location = new_url;
	}
}
