
function highlight(control) {
	if(control) {
		
		var oldClass = control.className;
		control.className = 'highlight';
		
		control.onblur = function() {
			this.className = oldClass;
		}
	}
}