<!--
function add_flash(code, name, style, width, height)
{
	document.write('<DIV id="' + name + '" style="' + style + 'overflow:hidden; display:none; width: ' + width + 'px; height: ' + height + 'px;"></DIV>');
	window.document.getElementById(name).innerHTML = code;
	window.document.getElementById(name).style.display = "block";
}
-->