function flash(id, width, height, name){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+width+'" height="'+height+'" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" id="'+name+'">'
	+'<param name="movie" value="'+id+'">'
	+'<param name="quality" value="high">'
    +'<param name="allowScriptAccess" value="always" />'
	+'<param name="wmode" value="transparent">'
	+'<embed src="'+id+'" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" width="'+width+'" height="'+height+'" type="application/x-shockwave-flash" showLiveConnect="true" name="'+name+'" allowScriptAccess="always" style="z-index:99;"></embed>'
	+'</object>');
	//+'<embed src="'+id+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" width="'+width+'" height="'+height+'" type="application/x-shockwave-flash" name="'+name+'" z-index:99;></embed>'
}

