function insertFlashMovie(sPlaceholderID, sFlashMovie, nWidth, nHeight) {
	
	var sFlashHtml
		= "<embed"
		+ " src='" + sFlashMovie + "'"
		+ " width='" + nWidth + "'"
		+ " height = '" + nHeight + "'"
		+ " wmode='transparent'"
		+ "/>";
	
	document.getElementById(sPlaceholderID).innerHTML = sFlashHtml;
}