/***************************************************/
function Hello(){
alert('Hello!');
}



/**********************************************************************************/
function AfficherAdresse(Ville){

var destination=document.getElementById('Adresse');
var source=document.getElementById('Donnees');


/*alert(Ville);*/

for (i=0; destination.childNodes.length; i++) 
{
	
	source.appendChild(destination.childNodes[i]);
	
}



destination.appendChild(document.getElementById(Ville));

/*fin fonction*/
}


/*****************************************************************************/
function AfficherZone(){
alert('AfficherZone');

/*var destination=document.getElementById('Adresse');
var source=document.getElementById('Donnees');

for (i=0; destination.childNodes.length; i++) 
{
	source.appendChild(destination.childNodes[i]);
}

destination.appendChild(document.getElementById('WestVlaanderen'));

*/
}


/****************************************************************************************/
function addlistener(){
/*alert('Hello!');
var zone=document.getElementById('AreaOostende');
zone.attachEvent(onclick,AfficherZone,false);
zone.addEventListener(click,AfficherZone,useCapture);*/
}


/******************************************************************************************/

/*remplacé par attribut onload du tag <body>*/
/*window.attachEvent(onload,addlistener,false);*/

/*alert('Hello!');*/
addlistener();

