function pm_replacePlaceholderWithMovie(inPlaceholderId, inMovieUrl, inMovieWidth, inMovieHeight)
{
	var embedCode = "<embed type='application/x-mplayer2' ";
	embedCode += "src='" + inMovieUrl + "' ";
	embedCode += "name='MediaPlayer' ";
	embedCode += "width=" + inMovieWidth + " ";
	embedCode += "height=" + inMovieHeight + " ";
	embedCode += "autostart='true' ";
	embedCode += "controller='true' ";
	embedCode += "></embed>";
	
	placeholderElement = document.getElementById(inPlaceholderId);
	placeholderElement.innerHTML = embedCode;
}
