function inputAutoValue(ob, txt) {
	if (txt == undefined) {
		ob.value = '';
		return 1;
	}	
	if (ob.value != '') {
		return 1;
	}
	ob.value = txt;
	return 1;
}
