function insertFlash(sPlaceholderID, sFileName, nWidth, nHeight) {
	//alert("sPlaceholderID : " + sPlaceholderID + ", sFileName: " + sFileName + ", nWidth: " + nWidth + ", nHeight: " + nHeight);

	var sHtml = "";
							
		sHtml
			+= "<embed src='images/" + sFileName + "'"
			+  " width='" + nWidth + "'"
			+  " height='" + nHeight + "'"
			+  " quality='high'"
			+  " wmode='transparent'"
			+  " pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash'"
			+  " type='application/x-shockwave-flash'"
			+  ">"
			+  "</embed>";
			
	document.getElementById(sPlaceholderID).innerHTML = sHtml;
	
}