function playFile(filePath , targetP){
	var s1 = new SWFObject("/jw_flv_player/flvplayer.swf","single","300","170","7");
	s1.addParam("allowfullscreen","true");
	//alert(filePath);
	s1.addVariable("file",filePath);
	s1.addVariable("image","preview.jpg");
	s1.addVariable("autostart","true"); 
	s1.write(targetP);

}

function playVideoFile(filePath , targetP){
	var s1 = new SWFObject("/jw_flv_player/flvplayer.swf","single","320","250","7");
	s1.addParam("allowfullscreen","true");
	//alert(filePath);
	s1.addVariable("file",filePath);
	s1.addVariable("image","preview.jpg");
	s1.addVariable("autostart","true"); 
	s1.write(targetP);

}

function playVideo(filePath , targetP){
	var s1 = new SWFObject("/jw_flv_player/flvplayer.swf","single","320","250","7");
	s1.addParam("allowfullscreen","true");
	//alert(filePath);
	s1.addVariable("file",filePath);
	s1.addVariable("image","preview.jpg");
	s1.addVariable("autostart","true"); 
	s1.write(targetP);

}

