function CreateChart (type,xml,object){
		
	ChartsPath = "http://www.mifc.com/sift_09/dvcharts/"; //Path to folder with swf files

	html = '<object width="600" height="400" type="application/x-shockwave-flash" data="'+ChartsPath+'preloader.swf?'+Math.random()+'">';
	html += '<param name="movie" value="'+ChartsPath+'preloader.swf?'+Math.random()+'" />';
	html += '<param name="quality" value="high" />';
    html += '<param name="FLASHVARS" value="type='+ChartsPath+type+'&xml='+xml+'" />';
	html += '</object>';

	document.getElementById(object).innerHTML = html; 

}
