window.onload = function(){
	createFlashMarkup('760','196','header.swf','flashmenu','#022D58');
}

function createFlashMarkup(width,height,uri,replaceid,BGColor){
	var embed = document.createElement('embed');
	embed.setAttribute('width',width);
	embed.setAttribute('height',height);
	embed.setAttribute('src',uri);
	embed.setAttribute('bgcolor',BGColor);

	var div = document.getElementById(replaceid);
	div.appendChild(embed);
}