function show_banner(b_file, b_url, b_width, b_height, b_color, b_mode, b_ver, IE_only)
{
	var rnd = Math.round(Math.random()*1048576);

	if(!b_url) withLink = false;

	document.write('<object type="application/x-shockwave-flash" data="'+b_file+'?rnd='+rnd); if (withLink) document.write('&path='+b_url); document.write('" width="'+b_width+'" height="'+b_height+'">');
	document.write('<param name="movie" value="'+b_file+'?rnd='+rnd); if(withLink) document.write('&path='+b_url); document.write('"/>');
	if(b_mode == true) document.write('<param name="wmode" value="transparent"/>');
	document.write('<param name="quality" value="high"/>');
	if(b_color) document.write('<param name="bgcolor" value="'+b_color+'"/>');
	document.write('</object>');
}