    flashembed("video1", 
    
        /* 
            first argument supplies standard Flash parameters. See full list:
            http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_12701
        */
        {
            src:'../uploads/FlowPlayerLight.swf',
            width: 255, 
            height: 190
        },
        
        /*
            second argument is Flowplayer specific configuration. See full list:
            http://flowplayer.org/player/configuration.html
        */
        {config: {   
            autoPlay: false,
            autoBuffering: true,
            controlBarBackgroundColor:'0x030605',
            initialScale: 'scale',
            videoFile: '../uploads/NYEBall2008NoAudio.flv'
        }} 
    );     
     
     
     /*
        use flashembed to place flowplayer into HTML element 
        whose id is "example" (below this script tag)
     */
     flashembed("example", 
    
        /* 
            first argument supplies standard Flash parameters. See full list:
            http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_12701
        */
        {
            src:'../uploads/FlowPlayerLight.swf',
            width: 550, 
            height: 290
        },
        
        /*
            second argument is Flowplayer specific configuration. See full list:
            http://flowplayer.org/player/configuration.html
        */
        {config: {   
            autoPlay: false,
            autoBuffering: true,
            controlBarBackgroundColor:'0x2e8860',
            initialScale: 'scale',
            videoFile: '../uploads/Byrd15MinFINAL.flv'
        }} 
    );
 