window.alert = function() { return null; }

function input_highlight(obj)
{
	obj.style.backgroundColor = '#ebeae5';
	obj.onblur = new Function("this.style.backgroundColor='white'");
}