var ObjectTMPID='PAGE1';
var NomDiv="DIV_PAGE_1";
function TariffSelect(myThisid,nom)
{
  if(nom!='0')
  {
   if(ObjectTMPID!=null)
   {
     document.getElementById(ObjectTMPID).className="tabhide";
     document.getElementById(NomDiv).style.display="none";
   }
    Color = document.getElementById(myThisid).style.background;
    document.getElementById(myThisid).className="tabshow";
    document.getElementById("DIV_PAGE_"+nom).style.display="";

    ObjectTMPID=myThisid;
    NomDiv="DIV_PAGE_"+nom;
   }
}

function backhide(elem){
	line = document.getElementById('Line1').getElementsByTagName('TD');
	for (i=0; i<line.length; i++) {
		line[i].style.backgroundPosition = 'left';
		}
	if(document.getElementById('PAGE'+ (parseInt(elem)+1))){
		document.getElementById('PAGE'+ (parseInt(elem)+1)).style.backgroundPosition = '-100px -100px';
		}
	
}
