function getObjByID(objType,objID){
  // objType == "DIV"/ ... ; objID == exact object ID
  // returns: false (if object can't be found or browser is not supported) , object Handler (otherwise)
  if ( !isKK && !isOP && (!capable || !isServer) ){
    return false;
  }

  if (isOP || isKK ||isDOM ){
    var tempColl    = document.getElementsByTagName(objType);
    var tempCollCnt = tempColl.length;
    for (var i = 0; i < tempCollCnt; i++)  if (tempColl[i].id == objID) return tempColl[i];
    return false;
  }
  else if (isIE4) {
    tempColl        = document.all.tags(objType);
    var tempCollCnt = tempColl.length;
    for (var i = 0; i < tempCollCnt; i++)  if (tempColl[i].id == objID) return tempColl[i];
    return false;
  } // end of the IE4 case
  else if (isNS4) {
    var theLayers  = document.layers;
    var layersCnt  = theLayers.length;
    for (var i = 0; i < layersCnt; i++) if (theLayers[i].id == objID) return theLayers[i];
  } // end of the NS4 case
}