//function film_open()
//{
//document.getElementById("midden").style.display="inline"   ;
//document.getElementById("film_background").style.display="inline";
//}

function film_close()
{
//document.getElementById("midden").style.display="none";
//document.getElementById("film_background").style.display="none" ;
  document.body.removeChild(document.getElementById('film_background'));
  document.body.removeChild(document.getElementById('midden'));
}

function film_first()
{
  var newdiv = document.createElement('div');
  newdiv.setAttribute('id','film_background');
  newdiv.setAttribute('class','film_background');
  newdiv.setAttribute('className','film_background');
  document.body.appendChild(newdiv);

  var newdiv = document.createElement('div');
  newdiv.setAttribute('id','midden');
  newdiv.setAttribute('class','film_half');
  newdiv.setAttribute('className','film_half');
  document.body.appendChild(newdiv);
  newdiv.innerHTML = "<div class='film_movie' id='film_movie'><object id='player1' type='application/x-shockwave-flash' data='Film/player_flv_multi.swf' width='360' height='250'><noscript><a href='http://www.dvdvideosoft.com/products/dvd/Free-Media-Player-Software.htm'>free media player</a></noscript><param name='movie' value='Film/player_flv_multi.swf' /><param name='allowFullScreen' value='true' /><param name='FlashVars' value='configxml=Film/Ina-Atelier-Film-Avi.xml' /></object><a style='color:#FFFFFF;' href='javascript:film_close()'>Sluiten</a>";

  //document.getElementById('film_knop').href='javascript:film_open()';
}


