
function pdInitialiseFocusXB(objectIdRef) {

  if (document.getElementById) {

    document.getElementById(objectIdRef).focus();

  } else if (document.all) {

    document.all[objectIdRef].focus();

  }

}