function setFocus(fld) {
	var inp = document.getElementById(fld);
	if (inp)
		inp.focus();
};

