
function createSWF(flv){
	swf = new SWFObject("http://www.newspress.co.uk/LINKS/javascript/flvplayer.swf","single","320","240","7");
	swf.addParam("allowfullscreen","true");
	swf.addVariable("backcolor","0x000000");
	swf.addVariable("frontcolor","0xCCCCCC");
	swf.addVariable("lightcolor","0x527FE8");
	swf.addVariable("autostart","false");
	swf.addVariable("file",flv);
	//MAKE SURE THE ID BELOW EXISTS OTHERWISE SCRIPT WILL CRASH AND FAIL
	swf.write('preview');
}