//librairie de fonctions javascript pour le site areav-nc-inc.com
function urlPop2(popup) 
        { 
          var id = popup.selectedIndex; 
          if(id==0) return; 
          var url = popup.options[id].value; 
          if(url==""|| url=="#" ) return; 
          window.open(url, 'description', 'scrollbars=yes, width=350, height=400'); 
        }
function urlPop(popup) 
        { 
          var id = popup.selectedIndex; 
          if(id==0) return; 
          var url = popup.options[id].value; 
          if(url==""|| url=="#" ) return; 
          window.open(url); 
        }
function MM_openBrWindow(theURL,winName) { 
          window.open(theURL,winName,'scrollbars=yes,width=404,height=300');
        }
function affiche_popup(map,titre,w,h) {
		f = window.open(map,titre, 'scrollbars=no, width='+w+', height='+h+"'");
        }
function affiche_popup2(map,titre,w,h) {
		f = window.open(map,titre, 'scrollbars=yes, width='+w+', height='+h+"'");
        }
		
function affiche_bandeau() {
		toto = ['bandeau_business','bandeau_enrichment','bandeau_mining','bandeau_conversion','bandeau_employment'];
        var j= toto[Math.round((Math.random()*4))];
        document.write("<img src='../img/" + j + ".jpg' alt='Home AREVA' width='780' height='103' hspace='0' vspace='0' border='0' align='absbottom'  usemap='#Map'/>");
        }
function affiche_bandeau_home() {
		toto = ['bandeau_business','bandeau_enrichment','bandeau_mining','bandeau_conversion','bandeau_employment'];
        var j= toto[Math.round((Math.random()*4))];
        document.write("<img src='img/" + j + ".jpg' alt='Home AREVA' width='780' height='103' hspace='0' vspace='0' border='0' align='absbottom'  usemap='#Map'/>");
        }