function showNetworkBranchOption()
{ 
    var thisPath = '';
    var currURL = document.location.href;
    var rootNetwork = "/main_network/branch_network/";
    document.write("<option value='#'>---- Please Select ----</option>");
    document.write("<option value='#'>---- Hong Kong  ----</option>");

    thisPath = rootNetwork + "branch_hk/branch_causewaybay/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Causeway Bay</option>"); 
    thisPath = rootNetwork + "branch_hk/branch_quarrybay/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Kornhill</option>"); 
    //thisPath = rootNetwork + "branch_hk/branch_sheungwan/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Sheung Wan</option>"); 
    //thisPath = rootNetwork + "branch_hk/branch_central/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Central</option>"); 
    //thisPath = rootNetwork + "branch_hk/branch_quarrybay/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Kornhill</option>"); 
    thisPath = rootNetwork + "branch_hk/branch_chaiwan/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Chai Wan</option>"); 
    //thisPath = rootNetwork + "branch_hk/branch_aberdeen/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Aberdeen</option>"); 

    document.write("<option value='#'>---- Kowloon ----</option>");

    thisPath = rootNetwork + "branch_kln/branch_kwuntong/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Kwun Tong</option>"); 
    //thisPath = rootNetwork + "branch_kln/branch_sanpokong/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">San Po Kong</option>"); 
    thisPath = rootNetwork + "branch_kln/branch_lokfu/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Lok Fu</option>"); 
    //thisPath = rootNetwork + "branch_kln/branch_shamshuipo/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Sham Shui Po</option>"); 
    thisPath = rootNetwork + "branch_kln/branch_mongkok/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Mongkok</option>"); 
    //thisPath = rootNetwork + "branch_kln/branch_jordan/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Jordan</option>"); 
    //thisPath = rootNetwork + "branch_kln/branch_tsimshatsui/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Tsim Sha Tsui</option>"); 
     thisPath = rootNetwork + "branch_kln/branch_whampoa/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Whampoa</option>"); 
   thisPath = rootNetwork + "branch_kln/branch_kowloonbay/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Kowloon Bay</option>"); 
    thisPath = rootNetwork + "branch_kln/branch_tseungkwano/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Tseung Kwan O</option>"); 

    document.write("<option value='#'>---- New Territories ----</option>");

    thisPath = rootNetwork + "branch_nt/branch_kwaichung/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Kwai Chung</option>"); 
    thisPath = rootNetwork + "branch_nt/branch_shatin/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Shatin</option>"); 
    //thisPath = rootNetwork + "branch_nt/branch_taipo/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Tai Po</option>"); 
    thisPath = rootNetwork + "branch_nt/branch_tsuenwan/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Tsuen Wan</option>"); 
    thisPath = rootNetwork + "branch_nt/branch_tuenmun/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Tuen Mun</option>"); 
    thisPath = rootNetwork + "branch_nt/branch_yuenlong/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Yuen Long</option>"); 
//    thisPath = rootNetwork + "branch_nt/branch_sheungshui/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Sheung Shui</option>"); 

    document.write("<option value='#'>---- Outlying Islands ----</option>");

    thisPath = rootNetwork + "branch_outlying/branch_skyplaza/";document.write("<option value='" + thisPath + "' " + ((currURL.indexOf(thisPath) != -1) ? "SELECTED" : "") + ">Skyplaza</option>"); 
//    document.write("</OPTGROUP>");

}