function FindElement(item) 
{
	if( window.mmIsOpera ) 
		return(document.getElementById(item));
		
	if (document.all) 
		return(document.all[item]);
		
	if (document.getElementById) 
		return(document.getElementById(item));
		
	return(false);
}

function PlayVideo(src, width, height, container)
{
	var strVideo;

	strVideo = '<embed src="/mediaplayer/mediaplayer.swf" ';
	strVideo = strVideo + 'width="' + width + '" ';
	strVideo = strVideo + 'height="' + height + '" ';
	strVideo = strVideo + 'allowscriptaccess="always" allowfullscreen="true" ';
	strVideo = strVideo + 'flashvars="height=' + height + '&width=' + width + '&file=' + src + '&autostart=true"/>'
	
	var objContainer = FindElement(container);
	
	objContainer.innerHTML = strVideo;
}
