

function gSetFocus(id){
	var o = document.getElementById(id);
    if (o != null)
      o.focus();
}

