function boxOnHover(id) {
	if (!document.getElementById) return false;
	var box = document.getElementById(id);
	box.className += " hover";
	box.onmouseout = function() { this.className = this.className.replace(" hover", "");}
}

function highlight_row(rowID) {
	var row = document.getElementById('row' + rowID);	
	if(row.className != 'row_select'){
		row.className = 'row_select';
	} else {
		row.className = 'row' + rowID%2;
	/*
		if(eval(rowID%2)==0){
			row.className = 'highlight_grey';
			row.onmouseout = function() { this.className = 'highlight_grey';}			
			row.onmouseover = function() { this.className = 'highlight_blue';}
		} else {
			row.className = 'highlight_white';
			row.onmouseout = function() { this.className = 'highlight_white';}
			row.onmouseover = function() { this.className = 'highlight_blue';}
		}
	*/
	}
}

