function createPlayer(theFile) {
	var s = new SWFObject("works/mediaplayer.swf","thePlayerId","400","320","7");
	s.addParam("allowfullscreen","true");
	s.addVariable("file", theFile);
	s.addVariable("width","400");
	s.addVariable("height","320");


	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','0xE9E9E9');


	s.write("video_player");
}
