function afficherResultats(obj){var tabResult=obj.responseXML.getElementsByTagName('resultat');document.getElementById('zoneResultats').innerHTML='';if(tabResult.length>0){if(tabResult.length<11){var hauteur=tabResult.length*15}else{var hauteur=120}with(document.getElementById('zoneResultats').style){visibility='visible';height=hauteur+'px'};for(var i=0;i<tabResult.length;i++){resultat=tabResult.item(i);var egt=document.createElement('li');var lnk=document.createElement('a');var texte=document.createTextNode(resultat.getAttribute('lib'));lnk.appendChild(texte);lnk.setAttribute('href','javascript:selco("'+resultat.getAttribute('code')+'","'+resultat.getAttribute('lib')+'")');lnk.setAttribute('title',resultat.getAttribute('lib'));lnk.setAttribute('id','insee'+resultat.getAttribute('code'));egt.appendChild(lnk);document.getElementById('zoneResultats').appendChild(egt);}}else{document.getElementById('zoneResultats').style.visibility='hidden';}}function loadData(champ){
/*var XHR=new XHRConnection();XHR.appendData('field',champ);XHR.appendData(champ,document.getElementById(champ).value);XHR.sendAndLoad("searchCommuneElec.php","POST",afficherResultats)*/
}function hideZoneResultats(){document.getElementById('zoneResultats').style.visibility='hidden'}
