/* 
Javascript 
Outil d'administration NOOVEO
*/


function runFoo(swf,largeur,hauteur,couleur,alternatif){
	document.write('<object type="application/x-shockwave-flash" data="'+swf+'" width="'+largeur+'" height="'+hauteur+'">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="'+swf+'" />');
	document.write('<param name="WMODE" value="Transparent" />');
	document.write(alternatif);
	document.write('</object>');
}


function PopupCentrer(page,largeur,hauteur){
  	var top = (screen.height-hauteur)/2;
  	var left = (screen.width-largeur)/2;
  	window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+",menubar=yes,resizable=yes,scrollbars=yes,statusbar=no");
}


function afficher(element,remplacant){
	document.getElementById(element).style.display = 'block';
	document.getElementById('cartefrance').src = remplacant;
}


function cacher(element){
	document.getElementById(element).style.display = 'none';
	document.getElementById('cartefrance').src = 'images/carte-france.jpg';
}
