// JavaScript Document

function addLoadListener(func) {
  if (window.addEventListener) {
    window.addEventListener("load", func, false);
  } else if (document.addEventListener) {
    document.addEventListener("load", func, false);
  } else if (window.attachEvent) {
    window.attachEvent("onload", func);
  }
}

function iniParametresForm() {

	if(document.getElementById('an').value=='2') { 
		document.getElementById('conteneurTypeStructure').style.display = 'none';
		document.getElementById('conteneurAfficherCarte').style.display = 'none';
	} else {
		document.getElementById('conteneurTypeStructure').style.display = 'block';
		document.getElementById('conteneurAfficherCarte').style.display = 'block';
	}

}

function iniAutoComplete() {
	
    new Ajax.Autocompleter("recherche", "autocomplete_choices", "/annuaire/autocomplete_choix.php", {
	paramName: "q", 
	minChars: 3, 
	indicator: 'indicator1'
	});
	
}

function annuaire_onLoad()  {

	/*var ddl = document.getElementById('an');
	if (ddl) {	ddl.addEventListener('change', iniParametresForm, false);	}*/

	if(document.getElementById('formRechercheAnnuaire')) {
		iniParametresForm();
		//iniAutoComplete();
	}

}

addLoadListener(annuaire_onLoad);

