function remaining(field, max, display) {
	mycount = max - field.value.length;
	//alert( mycount );
	document.getElementById(display).innerHTML = mycount;
}

// Highlight (color background) selected row (tr id="")
function highlightRow(id,state) {
	if (state=="1") {
		document.getElementById(id).style.backgroundColor = "#e8e8ff";
	} else {
		document.getElementById(id).style.backgroundColor = "transparent";
	}
}