[removed] var currentRowId = 0; function SelectRow() { if (event.keyCode == 40) MarkRow(currentRowId+1); else if (event.keyCode == 38) MarkRow(currentRowId-1); } function MarkRow(rowId) { if (document.getElementById(rowId) == null) return; if (docume