public static function isChildVillage_othernames($VillageId, $ChildVillageId)
 {
     $ischild = false;
     $obj_retResult = DAL_manageVillage_othernames::getVillage_othernamesListByVillageId($ChildVillageId);
     //get child node
     if ($obj_retResult->type == 1) {
         $arr_Village_othernamesList = $obj_retResult->data;
         $obj_Village_othernames = $arr_Village_othernamesList[0];
         $arrParentIds = explode(",", $obj_Village_othernames->Url);
         foreach ($arrParentIds as $Village_othernamesParentId) {
             if ($Village_othernamesParentId == $VillageId) {
                 $ischild = true;
             }
         }
     }
     return $ischild;
 }