
//display flash banner
function show_banner(banner_src, banner_width, banner_height)
{
	document.write('  		  <object width="' + banner_width + '" height="' + banner_height + '" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="' + window.parent.document.location.protocol + 'download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0">');
	document.write('            <param name="movie" value="' + banner_src + '" ');
	document.write('            <param name="quality" value="high" />');
	document.write('            <embed src="' + banner_src + '" quality="high" type="application/x-shockwave-flash" pluginspage="' + window.parent.document.location.protocol + 'www.macromedia.com/go/getflashplayer" width="' + banner_width + '" height="' + banner_height + '"></embed>');
	document.write('          </object>');
}

