function map4SwitchLanguage() {
/* il faut écrire le map de l'image.
		  <map name="Map">
              <area shape="rect" coords="64,3,80,15" href="#" onClick="MM_callJS('oldLanguageToNewLanguage(\&quot;FR\&quot;,\&quot;DE\&quot;);')">
              <area shape="rect" coords="24,3,40,15" href="#" onClick="MM_callJS('oldLanguageToNewLanguage(\&quot;FR\&quot;,\&quot;NL\&quot;);')">
              <area shape="rect" coords="4,3,20,15" href="#" onClick="MM_callJS('oldLanguageToNewLanguage(\&quot;FR\&quot;,\&quot;EN\&quot;);')">
          </map></td>
		  
=> utiliser 
		toWrite="<a href=\"pdf/PG" + currentPage + ".pdf\" target=\"blank\"><img src=\"../pictures/printvd.gif\" border=\"0\"></a>";
		document.write(toWrite);

*/

	var toWrite;
	var currentPage=top.location.href;

	while(currentPage.indexOf("/") != -1)  //recherche la page active
	{
		currentPage=currentPage.slice(currentPage.indexOf("/")+1);
	}

	toWrite="<map name=\"Map\"> <area shape=\"rect\" coords=\"4,3,20,15\" href=\"../AnnualReport/" + currentPage + "\"> <area shape=\"rect\" coords=\"24,3,40,15\" href=\"../Jaarverslag/" + currentPage + "\"> <area shape=\"rect\" coords=\"44,3,60,15\" href=\"../RapportAnnuel/" + currentPage + "\"> <area shape=\"rect\" coords=\"64,3,80,15\" href=\"../Jahresbericht/" + currentPage + "\"> </map>";
	document.write(toWrite);
}	
	