function swfInsert(movieName,swfId,requiredSwfVersion,width,height,backgroundColor,swfContainerName)
{
	var so = new SWFObject(movieName, swfId, width, height, requiredSwfVersion, backgroundColor);
	so.addParam("quality", "best");
	so.addParam("wmode", "transparent");
	so.addParam("salign", "t");
	so.write(swfContainerName);
}
