
var CURRENT_LANGUAGE_CODE = "it";

function changeLanguage(languageCode){
	//alert("Changing language to: " + languageCode);
	var bodyUrl = 'homeBody.html?langCode=' + languageCode;
	if(frames['bodyPage'].getCurrentShownSectionName()!=""){
		bodyUrl = bodyUrl + "&secName=" + frames['bodyPage'].getCurrentShownSectionName();
	}
	//alert(bodyUrl);
	CURRENT_LANGUAGE_CODE = languageCode;
	frames['bodyPage'].setCurrentShownSectionName(""); // se non inizializzo non verrą cambiato il body
	frames['bodyPage'].location.href = bodyUrl;
}

function getCurrentLanguageCode() {
	return CURRENT_LANGUAGE_CODE;
}