function CreateArticleFlash(elementId, width, height, flashUrl, baseUrl)
{
	var element = document.getElementById(elementId);
	
	if (element)

		
		element.innerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" height="' + height + '" width="' + width + '"><param name="wmode" value="transparent"><param name="movie" value="' + flashUrl + '"><param name="base" value="' + baseUrl + '" /><embed src="' + flashUrl + '" quality="high" name="movie" type="application/x-shockwave-flash" height="' + height + '" width="' + width +'" base="' + baseUrl + '" wmode="transparent"></object>';
}


function CreateArticleVideo(elementId, width, height, videoId)
{
	var element = document.getElementById(elementId);
	
	if (element)
	
		element.innerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" height=' + height + ' width="' + width + '"><param name="wmode" value="transparent"><param name="movie" value="http://services.brightcove.com/services/viewer/federated/263777539"><param name="wmode" value="transparent"><param name="flashvars" value="videoId=' + videoId + '&amp;playerId=263777539&amp;viewerSecureGatewayURL=https://services.brightcove.com/services/amfgateway&amp;servicesURL=http://services.brightcove.com/services&amp;cdnURL=http://admin.brightcove.com&amp;domain=embed&amp;autoStart=false&amp;wmode=transparent;"><embed src="http://services.brightcove.com/services/viewer/federated/263777539" quality="high" name="movie" type="application/x-shockwave-flash" flashvars="videoId=' + videoId +'&amp;playerId=263777539&amp;viewerSecureGatewayURL=https://services.brightcove.com/services/amfgateway&amp;servicesURL=http://services.brightcove.com/services&amp;cdnURL=http://admin.brightcove.com&amp;domain=embed&amp;autoStart=false&amp;" wmode="transparent" height="' + height + '" width="' + width + '"></object>';
}
