   function embedMovie(){
  
    // Create the initial object: the 2nd and 3rd parameter are the width and height of the flash object
    var s1 = new SWFObject("/media/mediaplayer.swf","mediaplayer","371","221","7", "#000000");  
    
    // Let the user toggle the video fullscreen or not
    // s1.addParam("allowfullscreen","true");
    
    // Width and height of the flash object
    s1.addVariable("width","371");
    s1.addVariable("height","221");
    
    // .flv file to play (should be relative to the mediaplayer.swf file)
    s1.addVariable("file","home/showcamp-short-250.flv");
    
    // Initial .jpg (should be relative to index.html)
    s1.addVariable("image","/media/home/showcamp.jpg");
    
    // Customization of the player
    s1.addVariable("backcolor","0x000000");
    s1.addVariable("screencolor","0x000000");
    s1.addVariable("frontcolor","0xFFFFFF");
    s1.addVariable("lightcolor","0xFFFFFF");
    s1.addVariable("showdigits","false");
    
	s1.addVariable("menu","false");
	
    // Uncomment if you want video to start as soon as page has loaded
    //s1.addVariable("autostart","true");
    
    s1.write("movie");    
  }