function highlight(obj) {
	obj.style.borderWidth='1px 1px 0px 1px';
	obj.style.borderStyle='solid';
	obj.style.borderColor='#59B959';
	obj.style.backgroundColor="#C6E8C6";
}

function restore(obj) {
	obj.style.borderWidth='1px 1px 1px 1px';
	obj.style.borderStyle='solid';
	obj.style.borderColor='#59B959';
	obj.style.backgroundColor="#ffffff";
}

