// JavaScript Document

function openFLVPlayer(filename,width,height) {
	var s1 = new SWFObject("flvplayer.swf","single",width,height,"7");
	s1.addParam("allowfullscreen","true");
	s1.addVariable("file",filename);
	//s1.addVariable("image","preview.jpg");
	s1.write("player1");
	
}
