﻿// Fichier JScript

function AfficheInfoPlus() {
    var infoPlus = window.document.getElementById("infoPlus");
	infoPlus.style.visibility = 'visible'; 
}

function FermeInfoPlus(){
    var infoPlus = window.document.getElementById("infoPlus");
    infoPlus.style.visibility = 'hidden';
}

function AfficheInfoPlusAM() {
    var infoPlus = window.document.getElementById("infoPlus");
	infoPlus.style.visibility = 'visible'; 
}

function FermeInfoPlusAM(){
    var infoPlus = window.document.getElementById("infoPlus");
    infoPlus.style.visibility = 'hidden';
}

function AfficheInfoPlusEpLogement() {
    var infoPlus = window.document.getElementById("infoPlus");
	infoPlus.style.visibility = 'visible'; 
	
	// espace pro : dans IE6, les dropdownlist restent en premier plan, il faut les cacher manuellement
	// cadre d'accueil - logement
	//window.document.getElementById('i_gvLogement_ctl02_i_ddlValeur').style.visibility='hidden';
}

function FermeInfoPlusEpLogement(){
    var infoPlus = window.document.getElementById("infoPlus");
    infoPlus.style.visibility = 'hidden';
    
    // espace pro : dans IE6, les dropdownlist restent en premier plan, il faut les cacher manuellement
    // cadre d'accueil - logement
    //window.document.getElementById('i_gvLogement_ctl02_i_ddlValeur').style.visibility='visible';
}

function AfficheInfoPlusEpInfo2() {
    var infoPlus = window.document.getElementById("infoPlus");
	infoPlus.style.visibility = 'visible'; 
	
	// espace pro : dans IE6, les dropdownlist restent en premier plan, il faut les cacher manuellement
	// entre-nous - situation familiale
    //window.document.getElementById('i_ddlSituation').style.visibility='hidden';
}

function FermeInfoPlusEpInfo2(){
    var infoPlus = window.document.getElementById("infoPlus");
    infoPlus.style.visibility = 'hidden';
    
    // espace pro : dans IE6, les dropdownlist restent en premier plan, il faut les cacher manuellement
    // entre-nous - situation familiale
    // window.document.getElementById('i_ddlSituation').style.visibility='visible';
}

function AfficheInfoPlusRech() {
    var infoPlus = window.document.getElementById("infoPlus");
	infoPlus.style.visibility = 'visible'; 
	
	// recherche standard et pendant les vacances : dans IE6, les dropdownlist restent en premier plan,
	// il faut les cacher manuellement
    window.document.getElementById('i_ddlTypeAccueil').style.visibility='hidden';
}

function FermeInfoPlusRech(){
    var infoPlus = window.document.getElementById("infoPlus");
    infoPlus.style.visibility = 'hidden';
    
    // recherche standard et pendant les vacances : dans IE6, les dropdownlist restent en premier plan,
    // il faut les cacher manuellement
    window.document.getElementById('i_ddlTypeAccueil').style.visibility='visible';
}

function AfficheInfoPlusRechPrev() {
    var infoPlus = window.document.getElementById("infoPlus");
	infoPlus.style.visibility = 'visible'; 
	
	// recherche standard et pendant les vacances : dans IE6, les dropdownlist restent en premier plan,
	// il faut les cacher manuellement
    window.document.getElementById('i_ddlTypeAccueil').style.visibility='hidden';
}

function FermeInfoPlusRechPrev(){
    var infoPlus = window.document.getElementById("infoPlus");
    infoPlus.style.visibility = 'hidden';
    
    // recherche standard et pendant les vacances : dans IE6, les dropdownlist restent en premier plan,
    // il faut les cacher manuellement
    window.document.getElementById('i_ddlTypeAccueil').style.visibility='visible';
}

function AfficheInfoPlusGeocodeItin() {
    var infoPlus = window.document.getElementById("infoPlus");
	infoPlus.style.visibility = 'visible'; 
	
	// geocode itinéraire : dans IE6, les dropdownlist restent en premier plan,
	// il faut les cacher manuellement
    window.document.getElementById('i_ddl_StreetDep').style.visibility='hidden';
}

function FermeInfoPlusGeocodeItin(){
    var infoPlus = window.document.getElementById("infoPlus");
    infoPlus.style.visibility = 'hidden';
    
    // geocode itinéraire : dans IE6, les dropdownlist restent en premier plan,
    // il faut les cacher manuellement
    window.document.getElementById('i_ddl_StreetDep').style.visibility='visible';
}




//filter: alpha(opacity=50); /* IE */
//-moz-opacity: 0.5; /* Mozilla */
//opacity: 0.5; /* CSS3 */
//-khtml-opacity: 0.5; /* Safari */ 
