function copytext (from, to) {	document.getElementById(to).value = document.getElementById(from).value;}function setrowstyle (rid) {	row = document.getElementById('row_'+rid);	if (row.className == '') row.className = "checked";	else row.className = "";}