//###################### swf play ###############################
function swf(fw,fh,_src, id, vars,STYLE,ALIGN){
	html = '';
	html += '<object id="'+ id +'" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+fw+'" height="'+fh+'" align="'+ALIGN+'" style="'+STYLE+'">\n';
	html += '<param name="allowScriptAccess" value="always" />';
	html += '<param name="movie" value="'+_src+'" />\n';
	html += '<param name="quality" value="high" />\n';
	html += '<param name="scale" value="noScale" />\n';
	html += '<param name="flashvars" value="'+vars+'" />\n';
	html += '<param name="wmode" value="transparent" />';
	html += '<embed id="'+ id +'" src="'+_src+'" wmode="transparent" flashvars="'+vars+'" wmode="transparent" quality="high" width="'+fw+'" height="'+fh+'" align="'+ALIGN+'" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n';
	html += '</object>\n';
	document.write(html);
}

function setTrColor(obj, color){
        obj.style.backgroundColor=color;
        obj.onmouseout = function(){
                obj.style.backgroundColor=''; 
        }
}
