function flvPlayer(videoid, autostart) {
//	file = "/flv.php?"+videoid;
	file = "/video/"+videoid+".flv";
	image = "/img/video_screens/"+videoid+".jpg";
	var so = new SWFObject("/player4.swf", "mymovie", "480", "290", "9");
	so.addParam("allowscriptaccess","always");
	so.addParam("allowfullscreen","true");
	so.addParam("wmode","opaque");
	//so.useExpressInstall('expressinstall.swf');
	//so.addParam("align","left");
	so.addVariable("width",480);
	so.addVariable("height",290);
	so.addVariable("file",file);
	so.addVariable("image",image);
	if(autostart == 1) {
		so.addVariable("autostart",1);
	}
	so.write("flashplayer-"+videoid);
}

