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