
function libelleTarifs2(code)
{
if(code == "TGNUI") return "Night";
if(code == "TGWEE") return "Weekend";
if(code == "TGMID") return "Mid-week";
if(code == "TGSEM") return "Week";
if(code == "TGQUI") return "Fortnight";
if(code == "TG3W")  return "Three weeks";
if(code == "TGMOI")  return "Month";
if(code == "TH1")  return "One person";
if(code == "TH2")  return "Two persons";
if(code == "TH3")  return "Three persons";
if(code == "THSUP")  return "Extra person";
if(code == "THREP")  return "Meal";
if(code == "THDEM")  return "Half-board";
if(code == "THPEN")  return "Full board";
return "";
}


