
//Clear input after it had focus and clear onfocus event.
function clear_input(obj) {
	obj.value = '';
	obj.onfocus = null;
}
