function createPlayer(thePlace, theFile, theImage, go) {
	var s = new SWFObject("http://cabooltuss.eq.edu.au/Students/video/mediaplayer.swf","playerID","500","375","7");
	s.addParam("allowfullscreen","true");
	s.addParam("allowscriptaccess","always");
	s.addVariable("file",theFile);
	s.addVariable("width","500");
	s.addVariable("height","375");
	s.addVariable("displayheight","375");
	s.addVariable("image",theImage);
	s.addVariable("showicons","true");
	s.addVariable("showstop","true");
	s.addVariable("showdigits","true");
	if (go) { s.addVariable("autostart","true"); }

	s.write(thePlace);
}


function init() {
	createPlayer('placeholder1', 'http://cabooltuss.eq.edu.au/Students/video/cssteamonline/promo3.flv', 'http://cabooltuss.eq.edu.au/Students/video/cssteamonline/promo3.jpg', false);
	
}

window.onload=init;