
function init() {
onload=createplayer('http://store.aqa.org.uk/resourceZone/flv/AQA-RZ-ENGLISH-VIDEO-1.FLV', false);
}

window.onload=init;


function createplayer(theFile, go) {
	var s = new SWFObject("http://store.aqa.org.uk/media/video_clip/flvplayer.swf","playerID","315","268","7");
	s.addParam("allowfullscreen","true");
	s.addVariable("file",theFile);
	s.addVariable("width","315");
	s.addVariable("height","268");
	s.addVariable("displayheight","225");
	s.addVariable("overstretch","fit");
	s.addVariable("skin","http://store.aqa.org.uk/media/video_clip/stijl.swf");
	s.addVariable("image", "http://web.aqa.org.uk/img/english_video_1_still.jpg");
	if (go) { s.addVariable("autostart","true"); }
	s.write("placeholder");
}
