function	updateLineColor(id,lc) {
	var	isie=(navigator.appName=="Microsoft Internet Explorer");
	var	lcs=lc.split(",");
	var	img=document.getElementById(id+"-1");
	img.style.background='#'+lcs[0];
	if (isie) {
		img.style.filter="alpha(opacity=80)";
	} else {
		img.style.opacity="0.8";
	}
	img=document.getElementById(id+"-2");
	if (lcs[1]) {
		img.style.background='#'+lcs[1];
		if (isie) {
			img.style.filter="alpha(opacity=80)";
		} else {
			img.style.opacity="0.8";
		}
	} else {
		img.style.background='#'+lcs[0];
		if (isie) {
			img.style.filter="alpha(opacity=80)";
		} else {
			img.style.opacity="0.8";
		}
	}
}

