/* From Community Server - moved here and modified for video playback on non CS pages.
*/

function cs_setElement(id, html)
{
    var e = document.getElementById(id);
    if (e) e.innerHTML = html;
}

function cs_playVideo(element, filename, width, height)
{
	cs_setElement(element,'<embed src=\"/utility/communityserver/mediaplayer.swf\" width=\"' + width +
		'"\" height=\"' + height + '\" allowfullscreen=\"true\" flashvars=\"width=' + width +
		'&amp;height=' + height + '&amp;file=' + filename + '\"  />');
}


