function flash_ticker(flash_width, flash_height, flashfile, noflash){
	var flashmovie="<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" width=\""+flash_width+"\" height=\""+flash_height+"\" style=\"background-color: #d3dce5;\">";
	flashmovie+="<param name=\"movie\" value=\""+flashfile+"\" />";
	flashmovie+='<param name="wmode" value="transparent" />';
	flashmovie+='<param name="quality" value="high" />';
	flashmovie+="<embed src=\""+flashfile+"\" quality=\"high\" wmode=\"transparent\" width=\""+flash_width+"\" height=\""+flash_height+"\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\">";
	flashmovie+='</embed>';
	flashmovie+='<noembed>';
	flashmovie+=noflash;
	flashmovie+='</noembed>';
	flashmovie+='</object>';
	document.write(flashmovie);
}