function createFlashMarkup(width,height,uri,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('replace_area').replaceChild(embed,div); 
}

