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