function putFlash(idDiv, movie, width, height, wmode){
  var div = document.getElementById(idDiv);
  var s;
  s = '<object type="application/x-shockwave-flash" data="'
      + movie + '" width="' + width + '" height="' + height + '">'
      + '<param name="movie" value="' + movie + '" />'
      + '<param name="wmode" VALUE="' + wmode + '" />'
      + '</object>';
  div.innerHTML = s;
}

function init(){
  putFlash("fCent_0", "/swf/MUNIUSH_BANNER_VOTAR.swf", 363, 46, "transparent");
  putFlash("fCent_1", "/swf/actividades.swf", 93, 70, "transparent");
  putFlash("fCent_2", "/swf/pino_arcando.swf", 363, 46, "transparent");
  
}

window.onload = init;
