// JavaScript Document
//------------------
function ShowForm_BAS(){
  var Obj;
  //-- on masque le Haut Débit
  Obj = document.getElementById('P_HAUT');
  if( Obj){
    with( Obj.style){
      display="none";
    }
  }
  //-- on masque le bouton Haut Débit
  Obj = document.getElementById('B_HAUT');
  if( Obj){
    with( Obj.style){
      display="none";
    }
  }
  //-- on masque le compteur  
  Obj = document.getElementById('Compteur');
  if( Obj){
    with( Obj.style){
      display="none";
    }
  }
  //-- on affiche le bas débit
  Obj = document.getElementById('P_BAS');
  if( Obj){
    with( Obj.style){
      display="";
    }
	Obj.focus();
  }
  //-- on affiche le bouton bas débit
  Obj = document.getElementById('B_BAS');
  if( Obj){
    with( Obj.style){
      display="";
    }
	Obj.focus();
  }
}
//-----------------
function ShowForm_HAUT(){
  var Obj;
  //-- on masque le bas débit  
  Obj = document.getElementById('P_BAS');
  if( Obj){
    with( Obj.style){
      display="none";
    }
  }
  //-- on masque le bouton Bat débit  
  Obj = document.getElementById('B_BAS');
  if( Obj){
    with( Obj.style){
      display="none";
    }
  }
  //-- on masque le compteur  
  Obj = document.getElementById('Compteur');
  if( Obj){
    with( Obj.style){
      display="none";
    }
  }
  
  //-- on affiche le haut débit
  Obj = document.getElementById('P_HAUT');
  if( Obj){
    with( Obj.style){
      display="";
	}
	Obj.focus();
  }
  //-- on affiche le bouton haut débit
  Obj = document.getElementById('B_HAUT');
  if( Obj){
    with( Obj.style){
      display="";
	}
	Obj.focus();
  }
}

function ShowRaison() {
  var Obj;
  //-- on Affiche les 3 raisons pour vous inscrire  
  Obj = document.getElementById('Player_Explications_News');
  if( Obj){
    with( Obj.style){
      display="";
	}
	Obj.focus();
  }
}

function CloseNews() {
  var Obj;
  //-- on masque les 3 raisons pour vous inscrire
  Obj = document.getElementById('Player_Explications_News');
  if( Obj){
    with( Obj.style){
      display="none";
    }
  }

}

function CloseCompt() {
  var Obj;
  //-- on masque le compteur
  Obj = document.getElementById('Compteur');
  if( Obj){
	with( Obj.style){
	  display="none";
	}
  }
  //-- on affiche le haut débit
  Obj = document.getElementById('P_HAUT');
  if( Obj){
	with( Obj.style){
	  display="";
	}
	Obj.focus();
  }
  //-- on affiche le bouton haut débit
  Obj = document.getElementById('B_HAUT');
  if( Obj){
    with( Obj.style){
      display="";
	}
	Obj.focus();
  }

}

function ShowPossible() {
  var Obj;
  //-- on Affiche les 3 possibilités de dons  
  Obj = document.getElementById('Player_Explications_Dons');
  if( Obj){
    with( Obj.style){
      display="";
	}
	Obj.focus();
  }
}

function CloseDons() {
  var Obj;
  //-- on masque les 3 raisons pour vous inscrire
  Obj = document.getElementById('Player_Explications_Dons');
  if( Obj){
    with( Obj.style){
      display="none";
    }
  }

}