function getVillage_othernamesList($sessionkey, $appcode, $paging)
{
    $main_result = "<VPROFILERESULT>";
    $main_result .= "<AUTHSTATUS>0</AUTHSTATUS>";
    $userId = ValidateSession($sessionkey, $appcode);
    if ($userId > -1) {
        $main_result .= "<AUTHSTATUS>1</AUTHSTATUS>";
        $result = BL_manageVillage_othernames::getVillage_othernamesList();
        if ($result->type == 1) {
            $arr_Village_othernamesList = $result->data;
            if (count($arr_Village_othernamesList) > 0) {
                $main_result .= "<RESULTSTATUS>1</RESULTSTATUS>";
                $main_result .= "<VILLAGE_OTHERNAMESLIST>";
                foreach ($arr_Village_othernamesList as $obj_Village_othernames) {
                    $main_result .= getVillage_othernamesXml($obj_Village_othernames);
                }
                $main_result .= "</VILLAGE_OTHERNAMESLIST>";
            } else {
                $main_result .= "<RESULTSTATUS>0</RESULTSTATUS>";
            }
        } else {
            $main_result .= "<RESULTSTATUS>0</RESULTSTATUS>";
        }
    }
    $main_result .= "</VPROFILERESULT>";
    return $main_result;
}
function loadVillage_othernames($_GET)
{
    global $LANG;
    $villageId = isset($_GET["villageid"]) ? $_GET["villageid"] : -1;
    if ($villageId == -1) {
        echo "VillageId not found";
    }
    //$VillageId = isset($_GET["VillageId"]) ? $_GET["VillageId"] : (isset($_SESSION["VillageId"])?$_SESSION["VillageId"] :1) ;
    //$_SESSION["VillageId"] = $VillageId;
    ?>
<div class="common_button2">
<ul>
	<?php 
    //if(common::checkPermission(USERMANAGE_ADDUSER_ACTIONID_VIEW,$VillageId))
    //	{
    echo "<li class=\"btnleft\"><a href=\"?page=Dashboard\" id=\"btnback\"><div class=\"doublearrow\">&laquo;</div>&nbsp;BACK</a></li>";
    echo "<li class=\"btnright\"><a id=\"btnaddVillage_othernames\" href=\"#\"><div class=\"doublearrow\">+</div>ADD Village_othernames</a></li>";
    //	}
    ?>
</ul>
</div>
<div class="common_body_content clearfix" >
<div class="main_content_outer">
<div class="main_content">
<div class="content_header">
<div class="title_user">Manage Village_othernames</div>
<div class="title_searchbox"><input id="searchtextbox" class="searchtextbox" type="text" value="Search here..."></div>
</div>
<table cellpadding="0" cellspacing="0" style="width:100%"><tr><td>
<div class="main_listview">

<ul id="Village_othernamesList" class="main_listviewul">
<?php 
    $result = BL_manageVillage_othernames::getVillage_othernamesList();
    if ($result->type == 1) {
        $arr_Village_othernamesList = $result->data;
        if (count($arr_Village_othernamesList) > 0) {
            foreach ($arr_Village_othernamesList as $obj_Village_othernames) {
                $html = "<li class=\"ListRow\" id=\"Village_othernamesListRow_" . $obj_Village_othernames->VillageId . "\">";
                $html .= "<div class=\"datarow\">" . $obj_Village_othernames->VillageId . "</div>";
                $html .= "<div class=\"datarow\">" . $obj_Village_othernames->VillageNames . "</div>";
                $html .= "<div class=\"databtncell\"><a href=\"#\" class=\"rowbtn\">Edit</a></div>";
                $html .= "<div class=\"databtncell\"><a href=\"#\" class=\"rowbtn\">Delete</a></div>";
                $html .= "<input id=\"Village_othernames_" . $obj_Village_othernames->VillageId . "\" type = \"hidden\" value=\"" . $obj_Village_othernames->getVillage_othernamesData() . "\"></li>";
                echo $html;
            }
        }
        echo "<div id=\"contentError\" class=\"contenterror_hidden\">No Village_othernames found... </div>";
    } else {
        echo "<div id=\"contentError\" class=\"contenterror\">No Village_othernames found... </div>";
    }
    ?>



</ul>
<div id="popVillage_othernamesform" class="formPopup">
<div class="subheader"><?php 
    echo $LANG['SUBHEADER_VILLAGE_OTHER_NAMES'];
    ?>
</div>
<div class="formerror" id="formerror"></div>
<input type="hidden" id="FormMode" name="FormMode" value="add" >
<ul class="Village_othernamesform">
<li><div class="label"><?php 
    echo $LANG['VILLAGEID'];
    ?>
</div><div class="fromfield">
<input type="hidden"  id="Input_VillageId" name="Input_VillageId" value="<?php 
    echo $villageId;
    ?>
" class="form_area_textbox"></div></li>
<li><div class="label"><?php 
    echo $LANG['VILLAGENAMES'];
    ?>
</div><div class="fromfield"><input type="text"  id="Input_VillageNames" name="Input_VillageNames" value="" class="form_area_textbox"></div></li>
     
<li><div class="label"></div><div class="fromfield"><br/><br/><input id="form_addbtn" class="common_button" type="button" ></div></li>
</ul>
</div>
</div>
</td></tr></table>
<div class="main_content_footer"></div>
</div>
</div>
</div>
<?php 
}