﻿//====================================
// Function

var tempVar = "";
var tempPos = "";
var pathname = window.location.href.toLowerCase();

tempPos = pathname.lastIndexOf("/");
pathname = pathname.substring(tempPos+1,pathname.length);

if (pathname.indexOf("welcome.htm")!=-1)
{
	pathname = "index.htm"
}



root_path = '/';
text_path = '/text/chi/indexpage.htm';
search_path = '/text/search/';
sitemap_path = '/text/sitemap/index.htm';
enquiry_path = '/text/chi/contact.htm';
gic_path = 'http://www.gov.hk/tc/residents/';
//img_path = cv_nonsc_base_path + '/images/top/';


//=====================================
// Display

document.write("<table width=\"600\" cellpadding=\"0\" cellspacing=\"0\" border=0><tr>");
document.write("<td>");
document.write(" | <a href=\"../../index.htm\" class=\"in\"> 主 頁 </a> ");
document.write(" | <a href=\"javascript:LangSwitch('/gb/');\" class=\"in\"> 簡 體 版 </a> ");
document.write(" | <a href=\"javascript:LangSwitch('/eng/');\" class=\"in\"> English </a> ");
document.write(" | <a href=\"../../chi/"+pathname+"\" class=\"in\"> 圖 像 版 本 </a> ");
document.write(" | <br>");
document.write(" | <a href=\""+enquiry_path+"\" class=\"in\"> 聯 絡 我 們 </a> ");
document.write(" | <a href=\""+gic_path+"\" class=\"in\"> 香 港 政 府 一 站 通 </a> ");
document.write(" | ");
document.write("</td></tr></table>");

