
//
// Set the focus to the given input
//
function KeywordFocus() {
		var obj =	returnObjById("keyword");
		if (obj) {
			obj.focus();
		}
}

