function loadPlayer(videofile,previewfile,width,height,id,str,stt) {
	var so = new SWFObject('flvplayer.swf','mpl',width,height,'8');
	so.addParam("allowfullscreen","true");
	so.addVariable("file",videofile);
	so.addVariable("image",previewfile);
	so.addVariable("repeat","false");		
	so.addVariable("showdigits","false");
	so.addVariable("start",stt);
	so.addVariable("autostart","true");
	so.addVariable("usefullscreen","true");
	so.write('flvplayer');
}
