function ShowIPQuantity ( sk, fld ) {
	eval(fld).innerText = sk;
	return 0;
}

function ClearQuantity (fld) {
	eval(fld).innerText = "";
	return 0;
}

function ShowUsers (UserBar, hide1) {
	eval("S"+UserBar).style.cursor = "";
	eval("S"+hide1).style.cursor = "hand";
	eval("CABarGBar").style.cursor = "hand";
	eval("S"+UserBar).style.color = "#512806";
	eval("S"+hide1).style.color = "#512806";
	eval("CABarGBar").style.color = "#512806";
	eval("S"+UserBar).style.textDecoration = "underline";
	eval("S"+hide1).style.textDecoration = "none";
	eval("CABarGBar").style.textDecoration = "none";

	for (i=0; i<=23; i++) {
		eval("Hour"+i).colSpan = 1;
		eval(UserBar+"TD"+i).style.display = "";
		eval(hide1+"TD"+i).style.display = "none";
		eval(UserBar+i).style.width = BarWidth1.value;
	}
	return 0;
}



function CompareUsers (UserBar1, UserBar2) {
	kint1 = "C"+UserBar1+UserBar2;

	eval("SABar").style.cursor = "hand";
	eval("SGBar").style.cursor = "hand";
	eval(kint1).style.cursor = "";

	eval("SABar").style.color = "#512806";
	eval("SGBar").style.color = "#512806";
	eval(kint1).style.color = "#512806";

	eval("SABar").style.textDecoration = " none";
	eval("SGBar").style.textDecoration = " none";
	eval(kint1).style.textDecoration = " underline";

	for (i=0; i<=23; i++) {
		eval("Hour"+i).colSpan = 2;
		eval(UserBar1+"TD"+i).style.display = "";
		eval(UserBar2+"TD"+i).style.display = "";
		eval(UserBar1+i).style.width = BarWidth2.value;
		eval(UserBar2+i).style.width = BarWidth2.value;
	}
	return 0;
}