function over(id, color, cursor) {
	if (id == "") {return false;}
	if (color != "") {
	document.all(id).style.backgroundColor = '#'+color;
		}
	if (cursor == "") {
		document.all(id).style.cursor = 'pointer';
		}
	}

function out(id, color, cursor) {
	if (id == "") {return false;}
	if (color != "") {
		document.all(id).style.backgroundColor = '';
		}
	if (cursor == "") {
		document.all(id).style.cursor = '';
		}
	}
