/*
	Filename         :	loadflash.js
	Created by       :	Mark Thomas
	Last modified by :	Peter Hammans
	Created          :	17 May 2006 16:04:16
	Last Updated     :	17 May 2006 16:08:48
	Comments         :	
*/

function start (sFile, sDefault, nWidth, nHeight) {
	var oFlash = new JSFlashObject("/wp-content/flash/pete.swf?file_skin=/wp-content/flash/SteelExternalNoVol.swf&file_name=" + sFile + "&file_height=" + nHeight + "&file_width=" + nWidth, "homeanim", 251, 250, 6);
	oFlash.addNonFlashHTML("<img src=\"" + sDefault + "\"/>");
	oFlash.addParam("allowScriptAccess", "sameDomain");	
	oFlash.addParam("quality", "high");	
	oFlash.addParam("start", "false");
	document.getElementById("streamFlv").innerHTML = oFlash.getXHTML();
};


