function createVideo(theFile, theImage) {
	var s = new SWFObject("mediaplayer.swf","thePlayerId","640","500","7");
	s.addParam("allowfullscreen","true");
	s.addParam("allowscriptaccess","always");
	
	s.addVariable("file", theFile);
	s.addVariable("image", "graphics/"+theImage);
	s.addVariable("width","640");
	s.addVariable("height","500");
	s.addVariable("displaywidth","640");	s.addVariable("displayheight","520");

	s.addVariable("overstretch","false");
	s.addVariable("showicons","false");
	s.addVariable("autostart","true");

	s.addVariable('callback','analytics');
	s.addVariable("enablejs","true");
	s.addVariable("javascriptid","thePlayerId"); 
	s.addVariable("bufferlength","3"); 
	s.addVariable('backcolor','0x000000');
	s.addVariable('frontcolor','0xFFFFFF');	
	s.addVariable('lightcolor','0x03FF3C');

	s.write("video");
}


function createMusic(theFile) {
	var s = new SWFObject("mediaplayer.swf","thePlayerId","100%","20","7");
	s.addParam("allowscriptaccess","always");
		
	s.addVariable("file", theFile);
		
	s.addVariable("overstretch","false");
	s.addVariable("showicons","false");
	s.addVariable("autostart","true");

	s.addVariable("enablejs","true");
	s.addVariable("javascriptid","thePlayerId"); 
	s.addVariable("bufferlength","3"); 
	s.addVariable('backcolor','0x000000');
	s.addVariable('frontcolor','0xFFFFFF');	
	s.addVariable('lightcolor','0x03FF3C');

	s.addVariable('callback','analytics');

	s.write("music");
}


function createPlaylist(theFile) {
            var flashvars = {
                    file:theFile, 
                    autostart:"true",
                    repeat: "always",
                    backcolor: "0x000000",
                    frontcolor: "0xFFFFFF",
                    lightcolor: "0x03FF3C",
                    plugins: "googlytics-1"
            }
            var params = {
                    allowfullscreen:"false", 
                    allowscriptaccess:"always"
            }
            var attributes = {
                    id:"player1",  
                    name:"player1"
            }
            swfobject.embedSWF("player4.swf", "music", "100%", "18", "9.0.115", false, flashvars, params, attributes);
}