Event.observe(window, "load",
function () {
    if(typeof(SWFObject)!="undefined") {
    
        /* CHARGEMENT DU PLANISPHERE */

           var so = new SWFObject("/flash/services/planisphere.swf", "mymovie", "100%", "100%", "6", "#BCD6DF");
           so.addParam("quality", "high");
           so.addParam("wMode", "transparent");
           so.addVariable("fluXMLpoints", "/flash/services/".concat(i18n_accueil['planisphereMapping'])); /* Points a afficher */
           so.addVariable("fluXMLlieux", "/flash/services/".concat(i18n_accueil['planisphereLieux'])); /* Lieux a afficher */
           so.addVariable("debug", "false"); /* Fenetre de debug */
           so.write("flashcontent");
        
        
    }
    $$('#flashcontent map area').findAll(
        function(o){return o.href&&o.href.indexOf("#non-existant")>0;}
        ).each(
            function(o){
                o.observe("click",function(e){
                    alert(i18n_accueil['territoireNonExistant']);
                    return false;
                }
                )
        }
        );
}
);

