function InsertMovie(width,height,src,href,autoplay,loop,controller)
{
  document.write('<EMBED SRC="/videos/'+src+'" kioskmode="true" showlogo="false" cache="true"\n');
  document.write('WIDTH='+width+' HEIGHT='+height+' AUTOPLAY='+autoplay+' CONTROLLER='+controller+' LOOP='+loop+' \n');
  if (href.length > 4) { 
    document.write('HREF="'+href+'" TARGET="_blank"\n');
  }
  document.write('PLUGINSPACE="http://www.apple.com/quicktime/">\n');
}
