function writeFlash(url_root, width, height, bgcolor, version, name){
			if (version == null || version == ''){
				version = '7,0,0,0';
			}
			document.writeln("<object name='"+name+"' classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'");
			document.writeln(" codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version="+version+"' ");
		    document.writeln(" width='"+width+"' height='"+height+"'> ");
		    document.writeln("<param name='movie' value='"+url_root+"'>");
		    document.writeln("<param name='quality' value='high'>");
		    document.writeln("<param name='bgcolor' value='#"+bgcolor+"'>");
		    if (bgcolor == null || bgcolor == 'FFFFFF'){
				document.writeln("<param name='wmode' value='transparent'>");
			}
		    document.writeln("<embed src='"+url_root+"' ");
		    if (bgcolor == null || bgcolor == 'FFFFFF'){
				document.writeln(" wmode='transparent' ");
			}
		    document.writeln(" quality='high' bgcolor='#"+bgcolor+"'  width='"+width+"' height='"+height+"' ");
		    document.writeln(" type='application/x-shockwave-flash' ");
		    document.writeln(" pluginspage='http://www.macromedia.com/shockwav/download/index.cgi?P1_Prod_Version=ShockwaveFlash'>");
		    document.writeln("</embed></object>");
		}
