function embedFlash(width,height,uri,parentid,replaceid){

	var embed = document.createElement('embed');
	
	embed.setAttribute('width',width);

	embed.setAttribute('height',height);

	embed.setAttribute('src',uri);

	var div = document.getElementById(replaceid);
	
	document.getElementById(parentid).replaceChild(embed, div); 
}