var mediaCount = 0;
function InsertMedia(targetId, preso, width, height)
{
	mediaCount++;
	/*
	var thisId = 'media' + mediaCount.toString();
	var tag = document.createElement('div');
	tag.setAttribute('id', thisId);
	document.body.insertBefore(tag, this);
	//document.write('<div id="' + thisId + '"></div>\n');
	*/
	var tgt = document.getElementById(targetId);
	if (tgt)
	{
		var flashvars = { preso: preso };
		var params = { allowScriptAccess: 'always', base: "http://www.russell.com/public/media/" };
		var attributes = {};
		var versionStr = '9.0.0';
		attributes.id = attributes.name = targetId;
		swfobject.embedSWF("http://www.russell.com/public/media/Player.swf?v=1", targetId || 'Media' + mediaCount.toString(), width || "100%", height || "100%", versionStr, false, flashvars, params, attributes);
	}
}
