function createFlash(url,width,height,id)
{
	var ID="flash"+(Math.random()+1).toString().replace(/\./,'').substr(0,12);
	if(!id)id=ID;
	if(!width)width=794;
	if(!height)height=35;
	var Tmp='<span id="'+ID+'"></span>';
	document.write(Tmp);
	var Tmp='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+width+'" height="'+height+'" id="'+id+'" align="middle">\
		<param name="allowScriptAccess" value="sameDomain" />\
		<param name="movie" value="'+url+'" /><param name="quality" value="high" /><param name="wmode" value="transparent"/><param name="bgcolor" value="#ffffff" /><embed src="'+url+'" quality="high" bgcolor="#ffffff" width="'+width+'" height="'+height+'" name="'+this.id+'" align="middle" swLiveConnect="true" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\
		</object>';
	document.getElementById(ID).innerHTML=Tmp;
}
