/* 
Javascript 
Outil d'administration NOOVEO
*/


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 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(alternatif);
	document.write('</object>');
}