﻿//====================================
// 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/gb/';
search_path = '/text/search/';
sitemap_path = '/text/sitemap/index.htm';
enquiry_path = '/text/gb/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('/chi/');\" class=\"in\"> 繁 体 版 </a> ");
document.write(" | <a href=\"javascript:LangSwitch('/eng/');\" class=\"in\"> English </a> ");
document.write(" | <a href=\"../../gb/"+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>");

