function start(){
  flash('y2009','/y2009.swf','#FFFFFF');
//  flash('siemens','/flash/siemens.swf','#FFFFFF');
//  flash('ukraine','/flash/ukraine.swf','#FFFFFF');
}

function flash($target,$source,$color){
  if(($target=document.getElementById($target))&&(document.createElement)){
    var $flash=document.createElement('EMBED'); var $place=$target.parentNode;
    if($flash.setAttribute){
      $flash.setAttribute('src',$source);
      $flash.setAttribute('bgcolor',$color);
      $flash.setAttribute('wmode','transparent');
      $flash.setAttribute('width',$target.getAttribute('width'));
      $flash.setAttribute('height',$target.getAttribute('height'));
      $flash.setAttribute('id',$target.getAttribute('id'));
      $flash.setAttribute('name',$target.getAttribute('id'));
      $flash.setAttribute('quality','high');
      $flash.setAttribute('allowScriptAccess','sameDomain');
      $flash.setAttribute('type','application/x-shockwave-flash');
      $flash.setAttribute('pluginspage','http://www.macromedia.com/go/getflashplayer');
      $flash.style.zIndex=0;
    }
    if(($place.innerHTML)&&($flash.outerHTML)){
      $place.innerHTML=$flash.outerHTML;
    }else{
      if($place.replaceChild){
        $place.replaceChild($flash,$target);
      }
    }
  }
}
