var texts = new Array(4);
texts["Favorite"] = "Favorit";
texts["ConfirmDeleteFavorite"] = "Är du säker på att du vill ta bort favoriten?";
texts["ConfirmDeleteAllFavorites"] = "Är du säker på att du vill ta bort alla favoriter?";
texts["NoFavorites"] = "Det finns inga favoriter sparade.";

function GetText(techName) {
	return eval("texts['" + techName + "']");
}