//v1.7
// Flash Player Version Detection
// Detect Client Browser type
// Copyright 2005-2007 Adobe Systems Incorporated.  All rights reserved.
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;

function ControlVersion()
{
	var version;
	var axo;
	var e;

	// NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry

	try {
		// version will be set for 7.X or greater players
		axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
		version = axo.GetVariable("$version");
	} catch (e) {
	}

	if (!version)
	{
		try {
			// version will be set for 6.X players only
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
			
			// installed player is some revision of 6.0
			// GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
			// so we have to be careful. 
			
			// default to the first public version
			version = "WIN 6,0,21,0";

			// throws if AllowScripAccess does not exist (introduced in 6.0r47)		
			axo.AllowScriptAccess = "always";

			// safe to call for 6.0r47 or greater
			version = axo.GetVariable("$version");

		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 4.X or 5.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
			version = axo.GetVariable("$version");
		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 3.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
			version = "WIN 3,0,18,0";
		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 2.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
			version = "WIN 2,0,0,11";
		} catch (e) {
			version = -1;
		}
	}
	
	return version;
}

// JavaScript helper required to detect Flash Player PlugIn version information
function GetSwfVer(){
	// NS/Opera version >= 3 check for Flash plugin in plugin array
	var flashVer = -1;
	
	if (navigator.plugins != null && navigator.plugins.length > 0) {
		if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
			var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
			var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
			var descArray = flashDescription.split(" ");
			var tempArrayMajor = descArray[2].split(".");			
			var versionMajor = tempArrayMajor[0];
			var versionMinor = tempArrayMajor[1];
			var versionRevision = descArray[3];
			if (versionRevision == "") {
				versionRevision = descArray[4];
			}
			if (versionRevision[0] == "d") {
				versionRevision = versionRevision.substring(1);
			} else if (versionRevision[0] == "r") {
				versionRevision = versionRevision.substring(1);
				if (versionRevision.indexOf("d") > 0) {
					versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
				}
			}
			var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
		}
	}
	// MSN/WebTV 2.6 supports Flash 4
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
	// WebTV 2.5 supports Flash 3
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
	// older WebTV supports Flash 2
	else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
	else if ( isIE && isWin && !isOpera ) {
		flashVer = ControlVersion();
	}	
	return flashVer;
}

// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
{
	versionStr = GetSwfVer();
	if (versionStr == -1 ) {
		return false;
	} else if (versionStr != 0) {
		if(isIE && isWin && !isOpera) {
			// Given "WIN 2,0,0,11"
			tempArray         = versionStr.split(" "); 	// ["WIN", "2,0,0,11"]
			tempString        = tempArray[1];			// "2,0,0,11"
			versionArray      = tempString.split(",");	// ['2', '0', '0', '11']
		} else {
			versionArray      = versionStr.split(".");
		}
		var versionMajor      = versionArray[0];
		var versionMinor      = versionArray[1];
		var versionRevision   = versionArray[2];

        	// is the major.revision >= requested major.revision AND the minor version >= requested minor
		if (versionMajor > parseFloat(reqMajorVer)) {
			return true;
		} else if (versionMajor == parseFloat(reqMajorVer)) {
			if (versionMinor > parseFloat(reqMinorVer))
				return true;
			else if (versionMinor == parseFloat(reqMinorVer)) {
				if (versionRevision >= parseFloat(reqRevision))
					return true;
			}
		}
		return false;
	}
}

function AC_AddExtension(src, ext)
{
  if (src.indexOf('?') != -1)
    return src.replace(/\?/, ext+'?'); 
  else
    return src + ext;
}

function AC_Generateobj(objAttrs, params, embedAttrs) 
{ 
  var str = '';
  if (isIE && isWin && !isOpera)
  {
    str += '<object ';
    for (var i in objAttrs)
    {
      str += i + '="' + objAttrs[i] + '" ';
    }
    str += '>';
    for (var i in params)
    {
      str += '<param name="' + i + '" value="' + params[i] + '" /> ';
    }
    str += '</object>';
  }
  else
  {
    str += '<embed ';
    for (var i in embedAttrs)
    {
      str += i + '="' + embedAttrs[i] + '" ';
    }
    str += '> </embed>';
  }

  document.write(str);
}

function AC_FL_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
     , "application/x-shockwave-flash"
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_SW_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
     , null
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
  var ret = new Object();
  ret.embedAttrs = new Object();
  ret.params = new Object();
  ret.objAttrs = new Object();
  for (var i=0; i < args.length; i=i+2){
    var currArg = args[i].toLowerCase();    

    switch (currArg){	
      case "classid":
        break;
      case "pluginspage":
        ret.embedAttrs[args[i]] = args[i+1];
        break;
      case "src":
      case "movie":	
        args[i+1] = AC_AddExtension(args[i+1], ext);
        ret.embedAttrs["src"] = args[i+1];
        ret.params[srcParamName] = args[i+1];
        break;
      case "onafterupdate":
      case "onbeforeupdate":
      case "onblur":
      case "oncellchange":
      case "onclick":
      case "ondblClick":
      case "ondrag":
      case "ondragend":
      case "ondragenter":
      case "ondragleave":
      case "ondragover":
      case "ondrop":
      case "onfinish":
      case "onfocus":
      case "onhelp":
      case "onmousedown":
      case "onmouseup":
      case "onmouseover":
      case "onmousemove":
      case "onmouseout":
      case "onkeypress":
      case "onkeydown":
      case "onkeyup":
      case "onload":
      case "onlosecapture":
      case "onpropertychange":
      case "onreadystatechange":
      case "onrowsdelete":
      case "onrowenter":
      case "onrowexit":
      case "onrowsinserted":
      case "onstart":
      case "onscroll":
      case "onbeforeeditfocus":
      case "onactivate":
      case "onbeforedeactivate":
      case "ondeactivate":
      case "type":
      case "codebase":
      case "id":
        ret.objAttrs[args[i]] = args[i+1];
        break;
      case "width":
      case "height":
      case "align":
      case "vspace": 
      case "hspace":
      case "class":
      case "title":
      case "accesskey":
      case "name":
      case "tabindex":
        ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
        break;
      default:
        ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
    }
  }
  ret.objAttrs["classid"] = classid;
  if (mimeType) ret.embedAttrs["type"] = mimeType;
  return ret;
}


var menu_cn_productAndService_en='<DIV class=subtitle onclick="SwitchMenu(\'sub1\')">'+
  '<A class=menuWithLink href="products_and_services_conferencing_services.html">Conferencing Services </A>'+
'</DIV>'+
'<SPAN class=submenu id=sub1>'+
  '<UL>'+
    '<LI><A href="products_and_services_conferencing_services_audio_conferencing.html" target=_parent>Audio Conferencing</A> ' +
    '<LI><A href="products_and_services_conferencing_services_video_conferencing.html" target=_parent>Video Conferencing</A>' + 
    '<LI><A href="products_and_services_conferencing_services_web_conferencing.html" target=_parent>Web Conferencing</A> ' + 
    '<LI><A href="products_and_services_conferencing_services_reservations_enquiries.html" target=_parent>Reservations and Enquiries</A> </LI></UL></SPAN> ' +
'<DIV class=subtitle onclick="SwitchMenu(\'sub2\')">'+
  '<A class=menuWithLink href="products_and_services_data_centre.html">Data Centre &amp; Business <BR>Continuity</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub2>'+
  '<UL>'+
    '<LI><A href="products_and_services_data_centre_idatacentre.html" target=_parent>Data Centre</A>'+ 
    '<LI><A href="products_and_services_data_centre_business_continuity.html" target=_parent>Business Continuity and Disaster Recovery Services</A> ' + 
    '<LI><A href="products_and_services_data_services_facility_management.html" target=_parent>Facility Management </A></LI>'+
  '</UL>'+
'</SPAN> ' +
'<DIV class=subtitle onclick="SwitchMenu(\'sub3\')">'+
  '<A class=menuWithLink href="products_and_services_data_services.html">Data Connectivity </A>'+
'</DIV>'+
'<SPAN class=submenu id=sub3> ' +
  '<UL>'+
    '<LI class=smallCaps><A href="products_and_services_data_services_point_to_point_ethernet.html" target=_parent>Point-to-Point Ethernet</A> ' + 
    '<LI class=smallCaps><A href="products_and_services_data_services_metro_ethernet.html" target=_parent>Metro Ethernet</A> ' + 
    '<LI><A href="products_and_services_data_services_local_ip_vpn.html" target=_parent>Local IP VPN</A> ' + 
    '<LI><A href="products_and_services_data_services_international_services.html" target=_parent>International MPLS Services</A> ' + 
    '<LI><A href="products_and_services_data_services_international_ethernet.html" target=_parent>IEPL</A> ' + 
    '<LI><A href="products_and_services_data_services_international_services_iplc.html" target=_parent>IPLC</A> ' + 
    '<LI><A href="products_and_services_data_services_data_connect.html" target=_parent>Leased Line </A> ' +
    '<LI class=smallCaps><A href="products_and_services_data_services_atm.html" target=_parent>ATM</A> ' + 
    '<LI class=smallCaps><A href="products_and_services_data_services_frame_relay.html" target=_parent>Frame Relay</A> ' + 
    '<LI class=smallCaps><A href="products_and_services_data_services_escon_fibre.html" target=_parent>ESCON / Fibre Channel</A> ' + 
    '<LI class=smallCaps><A href="products_and_services_data_services_videoline_videolink.html" target=_parent>Video Link</A></LI>'+
  '</UL>'+
'</SPAN> ' +
'<DIV class=subtitle onclick="SwitchMenu(\'sub4\')">'+
  '<A class=menuWithLink href="products_and_services_desktop_service_ict_equip.html">Desktop Services and ICT Equipment</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub4> ' +
  '<UL>'+
    '<LI><A href="products_and_services_desktop_service_ict_equip_it.html" target=_parent>IT &amp; Equipment</A> ' + 
    '<LI><A href="products_and_services_desktop_service_ict_equip_office.html" target=_parent>Office Applications</A> ' + 
    '<LI><A href="products_and_services_desktop_service_ict_equip_cabling.html" target=_parent>Cabling &amp; Telecommunication <BR>Setup Service</A> ' + 
    '<LI><A href="products_and_services_desktop_service_ict_equip_comm.html" target=_parent>Communication Equipment</A> ' + 
    '<LI><A href="products_and_services_internet_services_ip_surveillance.html" target=_parent>IP Surveillance</A> </LI>'+
  '</UL>'+
'</SPAN> ' +
'<DIV class=subtitle onclick="SwitchMenu(\'sub5\')">'+
  '<A class=menuWithLink href="products_and_services_internet_services.html">Internet Connectivity</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub5> ' +
  '<UL>'+
      '<LI><A href="products_and_services_internet_services_dedicated_internet.html" target=_parent>Dedicated Internet Access</A> ' + 
      '<LI><A href="products_and_services_china_direct_internet_access.html" target=_parent>China Direct Internet Access</A> ' + 
      '<LI><A href="products_and_services_internet_services_ip_transit.html" target=_parent>IP Transit</A> ' + 
      '<LI><A href="products_and_services_internet_services_broadband_webtone.html" target=_parent>Business Broadband</A> ' + 
      '<LI><A href="products_and_services_value_added_internet_roaming.html" target=_parent>Internet Roaming Service</A> </LI>'+
  '</UL>'+
'</SPAN> ' +
'<DIV class=subtitle onclick="SwitchMenu(\'sub6\')">'+
  '<A class=menuWithLink href="products_and_services_messaging_and_communication.html">Messaging and <BR>Communication</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub6> ' +
  '<UL>'+
    '<LI><A href="products_and_services_messaging_icommunicator.html" target=_parent>iCommunication</A> ' + 
    '<LI><A href="products_and_services_total_messaging_solutions.html" target=_parent>Total Messaging</A> ' + 
    '<LI><A href="products_and_services_messaging_web_service.html" target=_parent>Web Service</A> </LI></UL></SPAN> ' +
'<DIV class=title onclick="p(\'products_and_services_professional_network.html\');">Network Solutions</DIV>'+
'<SPAN class=submenu id=sub7><!--/*<UL> ' +
  '<LI><A href="#" target=_parent>Networking</A> ' + 
  '<LI><A href="#" target=_parent>Storage Solution</A> ' + 
  '<LI><A href="#" target=_parent>Communications System Integration</A> ' + 
  '<LI><A href="#" target=_parent>Corporate Network Design</A> ' + 
  '<LI><A href="#" target=_parent>Network Security</A> </LI></UL>  -->'+
'</SPAN> ' +
'<DIV class=subtitle onclick="SwitchMenu(\'sub8\')">'+
  '<A class=menuWithLink href="products_and_services_security.html">Security Solutions</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub8> ' +
  '<UL>'+
    '<LI><A href="products_and_services_value_added_anti_virus.html" target=_parent>Anti-Virus + Anti Spamming Service</A> ' + 
    '<LI><A href="products_and_services_internet_services_pc_secure.html" target=_parent>PC Secure</A> ' + 
    '<LI><A href="products_and_services_value_added_mobile_secure.html" target=_parent>Mobile Secure</A> </LI>'+
  '</UL>'+
'</SPAN> ' +
'<DIV class=subtitle onclick="SwitchMenu(\'sub9\')">'+
  '<A class=menuWithLink href="products_and_services_voice_services.html">Unified Communications</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub9> ' +
  '<UL>'+
    '<LI><A href="products_and_services_value_added_ifax.html" target=_parent>iFax</A> ' + 
    '<LI><A href="products_and_services_voice_services_business_line.html" target=_parent>BusinessLine</A> ' + 
    '<LI><A href="products_and_services_voice_services_supertone.html" target=_parent>SuperTone</A> ' + 
    '<LI><A href="products_and_services_voice_services_centrex.html" target=_parent>Centrex</A> ' + 
    '<LI><A href="products_and_services_voice_services_idd_services.html" target=_parent>IDD Services</A> ' + 
    '<LI><A href="products_and_services_voice_services_call_management.html" target=_parent>Call Managment Services</A> ' + 
    '<LI><A href="products_and_services_voice_services_message_master.html" target=_parent>Message Master</A> ' + 
    '<LI><A href="products_and_services_voice_services_call_center.html" target=_parent>Call Center</A> ' + 
  '<LI><A href="products_and_services_value_added_info_service.html" target=_parent>Info Service</A> </LI>'+
  '</UL>'+
'</SPAN>'+
'</DIV> ';
//<SCRIPT language=javascript>document.write(menu_cn_productAndService_en);</SCRIPT>

var menu_cn_productAndService_zh='<DIV class=subtitle onclick="SwitchMenu(\'sub1\')">'+
  '<A class=menuWithLink href="products_and_services_conferencing_services.html">會議服務</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub1>'+
  '<UL>'+
    '<LI><A href="products_and_services_conferencing_services_audio_conferencing.html" target=_parent>電話會議</A>'+ 
    '<LI><A href="products_and_services_conferencing_services_video_conferencing.html" target=_parent>視像會議 </A>'+
    '<LI><A href="products_and_services_conferencing_services_web_conferencing.html" target=_parent>網絡會議</A>'+ 
    '<LI><A href="products_and_services_conferencing_services_reservations_enquiries.html" target=_parent>預約及查詢</A> </LI>'+
  '</UL>'+
'</SPAN>'+
'<DIV class=subtitle onclick="SwitchMenu(\'sub2\')">'+
  '<A class=menuWithLink href="products_and_services_data_centre.html">數據中心及業務延續</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub2>'+
  '<UL>'+
    '<LI><A href="products_and_services_data_centre_idatacentre.html" target=_parent>數據中心</A>'+ 
    '<LI><A href="products_and_services_data_centre_business_continuity.html" target=_parent>業務延續及災難恢復服務</A>'+ 
    '<LI><A href="products_and_services_data_services_facility_management.html" target=_parent>設施管理 </A></LI></UL></SPAN>'+
'<DIV class=subtitle onclick="SwitchMenu(\'sub3\')">'+
  '<A class=menuWithLink href="products_and_services_data_services.html">數據服務</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub3>'+
  '<UL>'+
    '<LI class=smallCaps><A href="products_and_services_data_services_point_to_point_ethernet.html" target=_parent>點對點以太網</A>'+ 
    '<LI class=smallCaps><A href="products_and_services_data_services_metro_ethernet.html" target=_parent>城域以太網</A>'+ 
    '<LI><A href="products_and_services_data_services_local_ip_vpn.html" target=_parent>本地IP虛擬專用網</A>'+ 
    '<LI><A href="products_and_services_data_services_international_services.html" target=_parent>MPLS 國際虛擬專用網</A>'+ 
    '<LI><A href="products_and_services_data_services_international_ethernet.html" target=_parent>國際以太網專線 </A>'+      
    '<LI><A href="products_and_services_data_services_international_services_iplc.html" target=_parent>國際專線 </A>'+
    '<LI><A href="products_and_services_data_services_data_connect.html" target=_parent>數據專線 </A>'+
    '<LI class=smallCaps><A href="products_and_services_data_services_atm.html" target=_parent>ATM</A>'+ 
    '<LI class=smallCaps><A href="products_and_services_data_services_frame_relay.html" target=_parent>幀中繼 </A>'+
    '<LI class=smallCaps><A href="products_and_services_data_services_escon_fibre.html" target=_parent>ESCON / Fibre Channel</A>'+ 
    '<LI class=smallCaps><A href="products_and_services_data_services_videoline_videolink.html" target=_parent>Video Link</A> </LI>'+
  '</UL>'+
'</SPAN>'+
'<DIV class=subtitle onclick="SwitchMenu(\'sub4\')">'+
  '<A class=menuWithLink href="products_and_services_desktop_service_ict_equip.html">桌面電腦服務與資訊及<BR>通訊科技設備</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub4>'+
  '<UL>'+
    '<LI><A href="products_and_services_desktop_service_ict_equip_it.html" target=_parent>資訊科技及設備</A>'+ 
    '<LI><A href="products_and_services_desktop_service_ict_equip_office.html" target=_parent>辦公室應用軟件</A>'+ 
    '<LI><A href="products_and_services_desktop_service_ict_equip_cabling.html" target=_parent>佈線及電訊配置服務</A>'+ 
    '<LI><A href="products_and_services_desktop_service_ict_equip_comm.html" target=_parent>通訊設備</A>'+ 
    '<LI><A href="products_and_services_internet_services_ip_surveillance.html" target=_parent>IP視象監察 </A></LI></UL></SPAN>'+
'<DIV class=subtitle onclick="SwitchMenu(\'sub5\')">'+
  '<A class=menuWithLink href="products_and_services_internet_services.html">互聯網服務</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub5>'+
  '<UL>'+
    '<LI><A href="products_and_services_internet_services_dedicated_internet.html" target=_parent>上網專線</A>'+ 
    '<LI><A href="products_and_services_china_direct_internet_access.html" target=_parent>中國上網專線</A>'+ 
    '<LI><A href="products_and_services_internet_services_ip_transit.html" target=_parent>本地及國際頻寬</A> '+
    '<LI><A href="products_and_services_internet_services_broadband_webtone.html" target=_parent>商業寬頻</A>'+ 
    '<LI><A href="products_and_services_value_added_internet_roaming.html" target=_parent>互聯網漫遊服務 </A></LI></UL></SPAN>'+
'<DIV class=subtitle onclick="SwitchMenu(\'sub6\')">'+
  '<A class=menuWithLink href="products_and_services_messaging_and_communication.html">訊息通訊方案</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub6>'+
  '<UL>'+
    '<LI><A href="products_and_services_messaging_icommunicator.html" target=_parent>全方位通訊服務</A>'+ 
    '<LI><A href="products_and_services_total_messaging_solutions.html" target=_parent>郵件整體解決方案</A>'+ 
    '<LI><A href="products_and_services_messaging_web_service.html" target=_parent>網上服務</A> </LI>'+
  '</UL>'+
'</SPAN>'+
'<DIV class=title onclick="p(\'products_and_services_professional_network.html\');">網絡方案</DIV>'+
'<SPAN class=submenu id=sub7><!--<UL>'+
  '<LI><A href="#" target=_parent>網絡建設</A>'+ 
  '<LI><A href="#" target=_parent>儲存方案</A>'+ 
  '<LI><A href="#" target=_parent>通訊系統整合</A>'+ 
  '<LI><A href="#" target=_parent>企業網絡設計</A>'+ 
  '<LI><A href="#" target=_parent>網絡保安</A> </LI></UL> --></SPAN>'+
'<DIV class=subtitle onclick="SwitchMenu(\'sub8\')">'+
  '<A class=menuWithLink href="products_and_services_security.html">通訊保安</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub8>'+
  '<UL>'+
    '<LI><A href="products_and_services_value_added_anti_virus.html" target=_parent>電郵防毒 + 垃圾電郵<BR>過濾服務</A>'+ 
    '<LI><A href="products_and_services_internet_services_pc_secure.html" target=_parent>電腦保安盾</A>'+ 
    '<LI><A href="products_and_services_value_added_mobile_secure.html" target=_parent>手機保安盾</A> </LI>'+
  '</UL>'+
'</SPAN>'+
'<DIV class=subtitle onclick="SwitchMenu(\'sub9\')">'+
  '<A class=menuWithLink href="products_and_services_voice_services.html">全方位通訊服務</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub9>'+
  '<UL>'+
    '<LI><A href="products_and_services_value_added_ifax.html" target=_parent>iFAX「網傳真」</A>'+ 
    '<LI><A href="products_and_services_voice_services_business_line.html" target=_parent>商業電話線</A>'+ 
    '<LI><A href="products_and_services_voice_services_supertone.html" target=_parent>SuperTone</A>'+ 
    '<LI><A href="products_and_services_voice_services_centrex.html" target=_parent>先進通</A>'+ 
    '<LI><A href="products_and_services_voice_services_idd_services.html" target=_parent>IDD 服務 </A>'+
    '<LI><A href="products_and_services_voice_services_call_management.html" target=_parent>來電功能組合 </A>'+
    '<LI><A href="products_and_services_voice_services_message_master.html" target=_parent>訊息通 </A>'+
    '<LI><A href="products_and_services_voice_services_call_center.html" target=_parent>電話中心 </A>'+
    '<LI><A href="products_and_services_value_added_info_service.html" target=_parent>資訊通服務 </A></LI>'+
  '</UL>'+
'</SPAN>'+
'</DIV>';
//<SCRIPT language=javascript>document.write(menu_cn_productAndService_zh);</SCRIPT>

var menu_about_us_2_zh='<DIV class=title onclick="p(\'about_us_mission_statement.html\');">營運宗旨</DIV>'+
'<DIV class=title onclick="p(\'about_us_company_background.html\');">公司背景</DIV>'+
'<DIV class=title onclick="p(\'about_us_milestone.html\');">里程碑</DIV>'+
'<DIV class=title onclick="p(\'about_us_results_announcement.html\');">業績簡報</DIV>'+
'<DIV class=title onclick="p(\'about_us_awards_and_recognition.html\');">獎項及嘉許</DIV>'+
'<DIV class=title onclick="p(\'about_us_press_release.html\')">新聞稿</DIV>'+
'<DIV class=title onclick="p(\'about_us_case_study.html\');">個案分享</DIV>'+
'<DIV class=title onclick="p(\'about_us_events.html\');">活動</DIV>'+
'<DIV class=title onclick="p(\'about_us_collateral.html\');SwitchMenu(\'sub1\');">宣傳資料</DIV>'+
'<DIV class=title onclick="p(\'about_us_great_tips.html\');">實用錦囊</DIV>'+
'<DIV class=title onclick="p(\'about_us_advertisement.html\');">廣告</DIV>'+
'<DIV class=title onclick="p(\'about_us_legal_statement.html\');">法律條款及私隱聲明</DIV>'+
'<DIV class=title onclick="p(\'about_us_recruitment.html\');">就業機會</DIV>'+
'<DIV class=title onclick="p(\'about_us_contact_us.html\');SwitchMenu(\'sub2\');">聯絡我們 </DIV></DIV></DIV>';
//<SCRIPT language=javascript>document.write(menu_about_us_2_zh);</SCRIPT>



var menu_about_us_2_en =' <DIV class=title onclick="p(\'about_us_mission_statement.html\');">Mission Statement</DIV> ' +
'<DIV class=title onclick="p(\'about_us_company_background.html\');">Company Background </DIV> ' +
'<DIV class=title onclick="p(\'about_us_milestone.html\');">Milestone </DIV> ' +
'<DIV class=title onclick="p(\'about_us_results_announcement.html\');">Results Announcement </DIV> ' +
'<DIV class=title onclick="p(\'about_us_awards_and_recognition.html\');">Awards &amp; Recognition</DIV> ' +
'<DIV class=title onclick="p(\'about_us_press_release.html\')">Press Release</DIV> ' +
'<DIV class=title onclick="p(\'about_us_case_study.html\');">Case Study</DIV> ' +
'<DIV class=title onclick="p(\'about_us_events.html\');">Events</DIV> ' +
'<DIV class=title onclick="p(\'about_us_collateral.html\');SwitchMenu(\'sub1\');">Collateral</DIV> ' +
'<DIV class=title onclick="p(\'about_us_great_tips.html\');">Great Tips</DIV>  ' +
'<DIV class=title onclick="p(\'about_us_advertisement.html\');">Advertisement</DIV> ' +
'<DIV class=title onclick="p(\'about_us_legal_statement.html\');">Legal Statement &amp; Privacy Policy</DIV> ' +
'<DIV class=title onclick="p(\'about_us_recruitment.html\');">Career Opportunities</DIV> ' +
'<DIV class=title onclick="p(\'about_us_contact_us.html\');SwitchMenu(\'sub2\');">Contact Us</DIV> ' ;
//<SCRIPT language=javascript>document.write(menu_about_us_2_en);</SCRIPT>

var menu_useful_link_zh = '<DIV class=title onclick="p(\'useful_links.html#relatedCompany\');">九倉電訊關連公司</DIV>'+
'<DIV class=title onclick="p(\'useful_links.html#partners\');">九倉電訊及COL合作伙伴</DIV>'+
'<DIV class=title onclick="p(\'useful_links.html#regulatoryAuthority\');">規管機構</DIV></DIV></DIV>';
//<SCRIPT language=javascript>document.write(menu_useful_link_zh);</SCRIPT>

var menu_useful_link_en = '<DIV class=title onclick="p(\'useful_links.html#relatedCompany\');">Wharf T&amp;T Related Companies </DIV> ' + 
'<DIV class=title onclick="p(\'useful_links.html#partners\');">Wharf T&amp;T and COL Partners </DIV> ' + 
'<DIV class=title onclick="p(\'useful_links.html#regulatoryAuthority\');">Regulatory Authority </DIV>';
//<SCRIPT language=javascript>document.write(menu_useful_link_en);</SCRIPT>

var menu_whats_new_zh='<DIV class=title onclick="p(\'about_us_awards_and_recognition.html\');">獎項及嘉許</DIV>'+
'<DIV class=title onclick="p(\'about_us_events.html\');">活動</DIV>'+
'<DIV class=title onclick="p(\'about_us_press_release.html\')">新聞稿</DIV></DIV></DIV>';
//<SCRIPT language=javascript>document.write(menu_whats_new_zh);</SCRIPT>


 var menu_whats_new_en = '<DIV class=title onclick="p(\'about_us_awards_and_recognition.html\');">Awards &amp; Recognition</DIV>'+
'<DIV class=title onclick="p(\'about_us_events.html\');">Events</DIV>'+
'<DIV class=title onclick="p(\'about_us_press_release.html\')">Press Release</DIV>'
//<SCRIPT language=javascript>document.write(menu_whats_new_en);</SCRIPT>

var menu_ps_conferencing_zh ='<DIV class=subtitle onclick="SwitchMenu(\'sub1\')">'+
  '<A class=menuWithLink href="products_and_services_conferencing_services.html">會議服務</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub1>' +
  '<UL>'+
    '<LI><A href="products_and_services_conferencing_services_audio_conferencing.html" target=_parent>電話會議</A>' + 
    '<LI><A href="products_and_services_conferencing_services_video_conferencing.html" target=_parent>視像會議 </A>' +
    '<LI><A href="products_and_services_conferencing_services_web_conferencing.html" target=_parent>網絡會議</A>' + 
    '<LI><A href="products_and_services_conferencing_services_reservations_enquiries.html" target=_parent>預約及查詢</A> </LI>'+
  '</UL>'+
'</SPAN>' +
'<DIV class=subtitle onclick="SwitchMenu(\'sub2\')">'+
  '<A class=menuWithLink href="products_and_services_data_centre.html">數據中心及業務延續</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub2>' +
  '<UL>'+
    '<LI><A href="products_and_services_data_centre_idatacentre.html" target=_parent>數據中心</A>' + 
    '<LI><A href="products_and_services_data_centre_business_continuity.html" target=_parent>業務延續及災難恢復服務</A>' + 
    '<LI><A href="products_and_services_data_services_facility_management.html" target=_parent>設施管理 </A></LI>'+
  '</UL>'+
'</SPAN>' +
'<DIV class=subtitle onclick="SwitchMenu(\'sub3\')">'+
  '<A class=menuWithLink href="products_and_services_data_services.html">數據服務</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub3>' +
  '<UL>'+
    '<LI class=smallCaps><A href="products_and_services_data_services_point_to_point_ethernet.html" target=_parent>點對點以太網</A>' + 
    '<LI class=smallCaps><A href="products_and_services_data_services_metro_ethernet.html" target=_parent>城域以太網</A>' + 
    '<LI><A href="products_and_services_data_services_local_ip_vpn.html" target=_parent>本地IP虛擬專用網</A>' + 
    '<LI><A href="products_and_services_data_services_international_services.html" target=_parent>MPLS 國際虛擬專用網</A>' + 
    '<LI><A href="products_and_services_data_services_international_ethernet.html" target=_parent>國際以太網專線 </A>' +
    '<LI><A href="products_and_services_data_services_international_services_iplc.html" target=_parent>國際專線 </A>' +
    '<LI><A href="products_and_services_data_services_data_connect.html" target=_parent>數據專線 </A>' +
    '<LI class=smallCaps><A href="products_and_services_data_services_atm.html" target=_parent>ATM</A>' + 
    '<LI class=smallCaps><A href="products_and_services_data_services_frame_relay.html" target=_parent>幀中繼 </A>' +
    '<LI class=smallCaps><A href="products_and_services_data_services_escon_fibre.html" target=_parent>ESCON / Fibre Channel</A>' + 
    '<LI class=smallCaps><A href="products_and_services_data_services_videoline_videolink.html" target=_parent>Video Link</A></LI>'+
  '</UL>'+
'</SPAN>' +
'<DIV class=subtitle onclick="SwitchMenu(\'sub4\')">'+
  '<A class=menuWithLink href="products_and_services_desktop_service_ict_equip.html">桌面電腦服務與資訊及<BR>通訊科技設備</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub4>' +
  '<UL>'+
    '<LI><A href="products_and_services_desktop_service_ict_equip_it.html" target=_parent>資訊科技及設備</A>' + 
    '<LI><A href="products_and_services_desktop_service_ict_equip_office.html" target=_parent>辦公室應用軟件</A>' + 
    '<LI><A href="products_and_services_desktop_service_ict_equip_cabling.html" target=_parent>佈線及電訊配置服務</A>' + 
    '<LI><A href="products_and_services_desktop_service_ict_equip_comm.html" target=_parent>通訊設備</A>' + 
    '<LI><A href="products_and_services_internet_services_ip_surveillance.html" target=_parent>IP視象監察 </A></LI>'+
  '</UL>'+
'</SPAN>' +
'<DIV class=subtitle onclick="SwitchMenu(\'sub5\')">'+
  '<A class=menuWithLink href="products_and_services_internet_services.html">互聯網服務</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub5>' +
  '<UL>'+
    '<LI><A href="products_and_services_internet_services_dedicated_internet.html" target=_parent>上網專線</A>' + 
    '<LI><A href="products_and_services_china_direct_internet_access.html" target=_parent>中國上網專線</A>' + 
    '<LI><A href="products_and_services_internet_services_ip_transit.html" target=_parent>本地及國際頻寬</A>' + 
    '<LI><A href="products_and_services_internet_services_broadband_webtone.html" target=_parent>商業寬頻</A>' + 
    '<LI><A href="products_and_services_value_added_internet_roaming.html" target=_parent>互聯網漫遊服務 </A></LI>'+
  '</UL>'+
'</SPAN>' +
'<DIV class=subtitle onclick="SwitchMenu(\'sub6\')">'+
  '<A class=menuWithLink href="products_and_services_messaging_and_communication.html">訊息通訊方案</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub6>' +
  '<UL>'+
    '<LI><A href="products_and_services_messaging_icommunicator.html" target=_parent>全方位通訊服務</A>' + 
    '<LI><A href="products_and_services_total_messaging_solutions.html" target=_parent>郵件整體解決方案</A>' + 
    '<LI><A href="products_and_services_messaging_web_service.html" target=_parent>網上服務</A> </LI>'+
  '</UL>'+
'</SPAN>' +
'<DIV class=title onclick="p(\'products_and_services_professional_network.html\');">網絡方案</DIV>'+
'<SPAN class=submenu id=sub7><!--<UL>' +
  '<LI><A href="#" target=_parent>網絡建設</A>' + 
  '<LI><A href="#" target=_parent>儲存方案</A>   ' +
  '<LI><A href="#" target=_parent>通訊系統整合</A>' + 
  '<LI><A href="#" target=_parent>企業網絡設計</A>' + 
  '<LI><A href="#" target=_parent>網絡保安</A> </LI></UL> --></SPAN>' +
'<DIV class=subtitle onclick="SwitchMenu(\'sub8\')">'+
  '<A class=menuWithLink href="products_and_services_security.html">通訊保安</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub8>' +
  '<UL>'+
    '<LI><A href="products_and_services_value_added_anti_virus.html" target=_parent>電郵防毒 + 垃圾電郵<BR>過濾服務</A>' + 
    '<LI><A href="products_and_services_internet_services_pc_secure.html" target=_parent>電腦保安盾</A>' + 
    '<LI><A href="products_and_services_value_added_mobile_secure.html" target=_parent>手機保安盾</A> </LI></UL></SPAN>' +
'<DIV class=subtitle onclick="SwitchMenu(\'sub9\')">'+
  '<A class=menuWithLink href="products_and_services_voice_services.html">全方位通訊服務</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub9>' +
  '<UL>'+
    '<LI><A href="products_and_services_value_added_ifax.html" target=_parent>iFAX「網傳真」</A>' + 
    '<LI><A href="products_and_services_voice_services_business_line.html" target=_parent>商業電話線</A>' + 
    '<LI><A href="products_and_services_voice_services_supertone.html" target=_parent>SuperTone</A>' + 
    '<LI><A href="products_and_services_voice_services_centrex.html" target=_parent>先進通</A>' + 
    '<LI><A href="products_and_services_voice_services_idd_services.html" target=_parent>IDD 服務 </A>' +
    '<LI><A href="products_and_services_voice_services_call_management.html" target=_parent>來電功能組合 </A>' +
    '<LI><A href="products_and_services_voice_services_message_master.html" target=_parent>訊息通 </A>' +
    '<LI><A href="products_and_services_voice_services_call_center.html" target=_parent>電話中心 </A>' +
    '<LI><A href="products_and_services_value_added_info_service.html" target=_parent>資訊通服務 </A></LI>'+
  '</UL>'+
'</SPAN>'+
'</DIV>';
//<SCRIPT language=javascript>document.write(menu_ps_conferencing_zh);</SCRIPT>



var menu_ps_conferencing_en ='<DIV class=subtitle onclick="SwitchMenu(\'sub1\')">'+
  '<A class=menuWithLink href="products_and_services_conferencing_services.html">Conferencing Services </A>'+
'</DIV>'+
'<SPAN class=submenu id=sub1>' +
  '<UL>'+
    '<LI><A href="products_and_services_conferencing_services_audio_conferencing.html" target=_parent>Audio Conferencing</A>' + 
    '<LI><A href="products_and_services_conferencing_services_video_conferencing.html" target=_parent>Video Conferencing</A>' +  
    '<LI><A href="products_and_services_conferencing_services_web_conferencing.html" target=_parent>Web Conferencing</A>' +  
    '<LI><A href="products_and_services_conferencing_services_reservations_enquiries.html" target=_parent>Reservations and Enquiries</A> </LI>'+
  '</UL>'+
'</SPAN>' + 
'<DIV class=subtitle onclick="SwitchMenu(\'sub2\')">'+
  '<A class=menuWithLink href="products_and_services_data_centre.html">Data Centre &amp; Business <BR>Continuity</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub2>' + 
  '<UL>'+
    '<LI><A href="products_and_services_data_centre_idatacentre.html" target=_parent>Data Centre</A>' +  
    '<LI><A href="products_and_services_data_centre_business_continuity.html" target=_parent>Business Continuity and Disaster Recovery Services</A>' +  
    '<LI><A href="products_and_services_data_services_facility_management.html" target=_parent>Facility Management </A></LI></UL></SPAN>' + 
'<DIV class=subtitle onclick="SwitchMenu(\'sub3\')">'+
  '<A class=menuWithLink href="products_and_services_data_services.html">Data Connectivity </A>'+
'</DIV>'+
'<SPAN class=submenu id=sub3>' + 
  '<UL>'+
    '<LI class=smallCaps><A href="products_and_services_data_services_point_to_point_ethernet.html" target=_parent>Point-to-Point Ethernet</A>' +  
    '<LI class=smallCaps><A href="products_and_services_data_services_metro_ethernet.html" target=_parent>Metro Ethernet</A>' +  
    '<LI><A href="products_and_services_data_services_local_ip_vpn.html" target=_parent>Local IP VPN</A>' +  
    '<LI><A href="products_and_services_data_services_international_services.html" target=_parent>International MPLS Services</A>' +  
    '<LI><A href="products_and_services_data_services_international_ethernet.html" target=_parent>IEPL</A>' +  
    '<LI><A href="products_and_services_data_services_international_services_iplc.html" target=_parent>IPLC</A>' +  
    '<LI><A href="products_and_services_data_services_data_connect.html" target=_parent>Leased Line </A>' + 
    '<LI class=smallCaps><A href="products_and_services_data_services_atm.html" target=_parent>ATM</A>' +  
    '<LI class=smallCaps><A href="products_and_services_data_services_frame_relay.html" target=_parent>Frame Relay</A>' +  
    '<LI class=smallCaps><A href="products_and_services_data_services_escon_fibre.html" target=_parent>ESCON / Fibre Channel</A>' +  
    '<LI class=smallCaps><A href="products_and_services_data_services_videoline_videolink.html" target=_parent>Video Link</A> </LI>'+
  '</UL>'+
'</SPAN>' + 
'<DIV class=subtitle onclick="SwitchMenu(\'sub4\')">'+
  '<A class=menuWithLink href="products_and_services_desktop_service_ict_equip.html">Desktop Services and ICT Equipment</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub4>' + 
  '<UL>'+
    '<LI><A href="products_and_services_desktop_service_ict_equip_it.html" target=_parent>IT &amp; Equipment</A>' +  
    '<LI><A href="products_and_services_desktop_service_ict_equip_office.html" target=_parent>Office Applications</A>' +  
    '<LI><A href="products_and_services_desktop_service_ict_equip_cabling.html" target=_parent>Cabling &amp; Telecommunication <BR>Setup Service</A>' +  
    '<LI><A href="products_and_services_desktop_service_ict_equip_comm.html" target=_parent>Communication Equipment</A>' +  
    '<LI><A href="products_and_services_internet_services_ip_surveillance.html" target=_parent>IP Surveillance</A> </LI></UL></SPAN>' + 
'<DIV class=subtitle onclick="SwitchMenu(\'sub5\')">'+
  '<A class=menuWithLink href="products_and_services_internet_services.html">Internet Connectivity</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub5>' + 
  '<UL>'+
    '<LI><A href="products_and_services_internet_services_dedicated_internet.html" target=_parent>Dedicated Internet Access</A>' +  
    '<LI><A href="products_and_services_china_direct_internet_access.html" target=_parent>China Direct Internet Access</A>' +  
    '<LI><A href="products_and_services_internet_services_ip_transit.html" target=_parent>IP Transit</A>' +  
    '<LI><A href="products_and_services_internet_services_broadband_webtone.html" target=_parent>Business Broadband</A>' +  
    '<LI><A href="products_and_services_value_added_internet_roaming.html" target=_parent>Internet Roaming Service</A> </LI>'+
  '</UL>'+
'</SPAN>' + 
'<DIV class=subtitle onclick="SwitchMenu(\'sub6\')">'+
  '<A class=menuWithLink href="products_and_services_messaging_and_communication.html">Messaging and <BR>Communication</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub6>' + 
  '<UL>'+
    '<LI><A href="products_and_services_messaging_icommunicator.html" target=_parent>iCommunication</A>' +  
    '<LI><A href="products_and_services_total_messaging_solutions.html" target=_parent>Total Messaging</A>' +  
    '<LI><A href="products_and_services_messaging_web_service.html" target=_parent>Web Service</A> </LI></UL></SPAN>' + 
'<DIV class=title onclick="p(\'products_and_services_professional_network.html\');">Network Solutions</DIV>'+
'<SPAN class=submenu id=sub7><!--/*<UL>' + 
  '<LI><A href="#" target=_parent>Networking</A>' +  
  '<LI><A href="#" target=_parent>Storage Solution</A>' +  
  '<LI><A href="#" target=_parent>Communications System Integration</A>' +  
  '<LI><A href="#" target=_parent>Corporate Network Design</A>' +  
  '<LI><A href="#" target=_parent>Network Security</A> </LI></UL>  --></SPAN>' + 
'<DIV class=subtitle onclick="SwitchMenu(\'sub8\')">'+
  '<A class=menuWithLink href="products_and_services_security.html">Security Solutions</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub8>' + 
  '<UL>'+
    '<LI><A href="products_and_services_value_added_anti_virus.html" target=_parent>Anti-Virus + Anti Spamming Service</A>' +  
    '<LI><A href="products_and_services_internet_services_pc_secure.html" target=_parent>PC Secure</A>' +  
    '<LI><A href="products_and_services_value_added_mobile_secure.html" target=_parent>Mobile Secure</A> </LI>'+
  '</UL>'+
'</SPAN>' + 
'<DIV class=subtitle onclick="SwitchMenu(\'sub9\')">'+
  '<A class=menuWithLink href="products_and_services_voice_services.html">Unified Communications</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub9>' + 
  '<UL>'+
    '<LI><A href="products_and_services_value_added_ifax.html" target=_parent>iFax</A>' +  
    '<LI><A href="products_and_services_voice_services_business_line.html" target=_parent>BusinessLine</A>' +  
    '<LI><A href="products_and_services_voice_services_supertone.html" target=_parent>SuperTone</A>' +  
    '<LI><A href="products_and_services_voice_services_centrex.html" target=_parent>Centrex</A>' +  
    '<LI><A href="products_and_services_voice_services_idd_services.html" target=_parent>IDD Services</A>' +  
    '<LI><A href="products_and_services_voice_services_call_management.html" target=_parent>Call Managment Services</A>' +  
    '<LI><A href="products_and_services_voice_services_message_master.html" target=_parent>Message Master</A>' +  
    '<LI><A href="products_and_services_voice_services_call_center.html" target=_parent>Call Center</A>' +  
    '<LI><A href="products_and_services_value_added_info_service.html" target=_parent>Info Service</A> </LI>'+
  '</UL>'+
  '</SPAN>'+
  '</DIV> ';
//<SCRIPT language=javascript>document.write(menu_ps_conferencing_en);</SCRIPT>

var menu_about_us_zh='<DIV class=title onclick="p(\'about_us_mission_statement.html\');">營運宗旨</DIV>'+
'<DIV class=title onclick="p(\'about_us_company_background.html\');">公司背景</DIV>'+
'<DIV class=title onclick="p(\'about_us_milestone.html\');">里程碑</DIV>'+
'<DIV class=title onclick="p(\'about_us_results_announcement.html\');">業績簡報</DIV>'+
'<DIV class=title onclick="p(\'about_us_awards_and_recognition.html\');">獎項及嘉許</DIV>'+
'<DIV class=title onclick="p(\'about_us_press_release.html\')">新聞稿</DIV>'+
'<DIV class=title onclick="p(\'about_us_case_study.html\');">個案分享</DIV>'+
'<DIV class=title onclick="p(\'about_us_events.html\');">活動</DIV>'+
'<DIV class=title onclick="p(\'about_us_collateral.html\');SwitchMenu(\'sub1\');">宣傳資料</DIV>'+
'<DIV class=title onclick="p(\'about_us_great_tips.html\');">實用錦囊</DIV>'+
'<DIV class=title onclick="p(\'about_us_advertisement.html\');">廣告</DIV>'+
'<DIV class=title onclick="p(\'about_us_legal_statement.html\');">法律條款及私隱聲明</DIV>'+
'<DIV class=title onclick="p(\'about_us_recruitment.html\');">就業機會</DIV>'+
'<DIV class=title onclick="p(\'about_us_contact_us.html\');SwitchMenu(\'sub2\');">聯絡我們 </DIV></DIV></DIV>';
//<SCRIPT language=javascript>document.write(menu_about_us_zh);</SCRIPT>

var menu_about_us_en='<DIV class=title onclick="p(\'about_us_mission_statement.html\');">Mission Statement</DIV>'+
'<DIV class=title onclick="p(\'about_us_company_background.html\');">Company Background </DIV>'+
'<DIV class=title onclick="p(\'about_us_milestone.html\');">Milestone </DIV>'+
'<DIV class=title onclick="p(\'about_us_results_announcement.html\');">Results Announcement</DIV>'+
'<DIV class=title onclick="p(\'about_us_awards_and_recognition.html\');">Awards &amp; Recognition</DIV>'+
'<DIV class=title onclick="p(\'about_us_press_release.html\')">Press Release</DIV>'+
'<DIV class=title onclick="p(\'about_us_case_study.html\');">Case Study</DIV>'+
'<DIV class=title onclick="p(\'about_us_events.html\');">Events</DIV>'+
'<DIV class=title onclick="p(\'about_us_collateral.html\');SwitchMenu(\'sub1\');">Collateral</DIV>'+
'<DIV class=title onclick="p(\'about_us_great_tips.html\');">Great Tips</DIV>'+
'<DIV class=title onclick="p(\'about_us_advertisement.html\');">Advertisement</DIV>'+
'<DIV class=title onclick="p(\'about_us_legal_statement.html\');">Legal Statement &amp; Privacy Policy</DIV>'+
'<DIV class=title onclick="p(\'about_us_recruitment.html\');">Career Opportunities</DIV>'+
'<DIV class=title onclick="p(\'about_us_contact_us.html\');SwitchMenu(\'sub2\');">Contact Us</DIV>';
//<SCRIPT language=javascript>document.write(menu_about_us_en);</SCRIPT>

var menu_customer_service_zh='<DIV class=title onclick="p(\'customer_services_online_customer_services.html\');">網上客戶服務</DIV>'+
'<DIV class=title onclick="p(\'customer_services_customer_charter.html\');">客戶約章</DIV>'+
'<DIV class=title onclick="p(\'customer_services_faq.html\');">常見問題</DIV>'+
'<DIV class=title onclick="p(\'customer_services_payment_method.html\');">繳費方法</DIV>'+
'<DIV class=title onclick="p(\'customer_services_user_guide.html\');">用戶指南</DIV>'+
'<DIV class=title onclick="p(\'customer_services_forms.html\');">'+
'<DIV class=menutitle onclick="p(\'customer_services_forms.html\');">表格</DIV></DIV></DIV></DIV></TD></TR>'+
'<TR>'+
'<TD>';
//<SCRIPT language=javascript>document.write(menu_customer_service_zh);</SCRIPT>


var menu_customer_service_en='<DIV class=title onclick="p(\'customer_services_online_customer_services.html\');">Online Customer Services </DIV>'+
'<DIV class=title onclick="p(\'customer_services_customer_charter.html\');">Customer Charter</DIV>'+
'<DIV class=title onclick="p(\'customer_services_faq.html\');">FAQ </DIV>'+
'<DIV class=title onclick="p(\'customer_services_payment_method.html\');">Payment Method</DIV>'+
'<DIV class=title onclick="p(\'customer_services_user_guide.html\');">User Guide</DIV>'+
'<DIV class=title onclick="p(\'customer_services_forms.html\');">Forms </DIV>';
//<SCRIPT language=javascript>document.write(menu_customer_service_en);</SCRIPT>

var menu_product_and_service_zh='<DIV class=subtitle onclick="SwitchMenu(\'sub1\')">'+
  '<A class=menuWithLink href="products_and_services_conferencing_services.html">會議服務</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub1>'+
  '<UL>'+
    '<LI><A href="products_and_services_conferencing_services_audio_conferencing.html" target=_parent>電話會議</A>'+ 
    '<LI><A href="products_and_services_conferencing_services_video_conferencing.html" target=_parent>視像會議 </A>'+
    '<LI><A href="products_and_services_conferencing_services_web_conferencing.html" target=_parent>網絡會議</A>'+ 
    '<LI><A href="products_and_services_conferencing_services_reservations_enquiries.html" target=_parent>預約及查詢</A> </LI></UL></SPAN>'+
'<DIV class=subtitle onclick="SwitchMenu(\'sub2\')">'+
  '<A class=menuWithLink href="products_and_services_data_centre.html">數據中心及業務延續</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub2>'+
  '<UL>'+
    '<LI><A href="products_and_services_data_centre_idatacentre.html" target=_parent>數據中心</A>'+ 
    '<LI><A href="products_and_services_data_centre_business_continuity.html" target=_parent>業務延續及災難恢復服務</A>'+ 
    '<LI><A href="products_and_services_data_services_facility_management.html" target=_parent>設施管理 </A></LI></UL></SPAN>'+
'<DIV class=subtitle onclick="SwitchMenu(\'sub3\')">'+
  '<A class=menuWithLink href="products_and_services_data_services.html">數據服務</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub3>'+
  '<UL>'+
    '<LI class=smallCaps><A href="products_and_services_data_services_point_to_point_ethernet.html" target=_parent>點對點以太網</A>'+ 
    '<LI class=smallCaps><A href="products_and_services_data_services_metro_ethernet.html" target=_parent>城域以太網</A>'+ 
    '<LI><A href="products_and_services_data_services_local_ip_vpn.html" target=_parent>本地IP虛擬專用網</A>'+ 
    '<LI><A href="products_and_services_data_services_international_services.html" target=_parent>MPLS 國際虛擬專用網</A>'+ 
    '<LI><A href="products_and_services_data_services_international_ethernet.html" target=_parent>國際以太網專線 </A>'+
    '<LI><A href="products_and_services_data_services_international_services_iplc.html" target=_parent>國際專線 </A>'+
    '<LI><A href="products_and_services_data_services_data_connect.html" target=_parent>數據專線 </A>'+
    '<LI class=smallCaps><A href="products_and_services_data_services_atm.html" target=_parent>ATM</A>'+ 
    '<LI class=smallCaps><A href="products_and_services_data_services_frame_relay.html" target=_parent>幀中繼 </A>'+
    '<LI class=smallCaps><A href="products_and_services_data_services_escon_fibre.html" target=_parent>ESCON / Fibre Channel</A>'+ 
    '<LI class=smallCaps><A href="products_and_services_data_services_videoline_videolink.html" target=_parent>Video Link</A> </LI></UL></SPAN>'+
'<DIV class=subtitle onclick="SwitchMenu(\'sub4\')">'+
  '<A class=menuWithLink href="products_and_services_desktop_service_ict_equip.html">桌面電腦服務與資訊及<BR>通訊科技設備</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub4>'+
  '<UL>'+
    '<LI><A href="products_and_services_desktop_service_ict_equip_it.html" target=_parent>資訊科技及設備</A>'+ 
    '<LI><A href="products_and_services_desktop_service_ict_equip_office.html" target=_parent>辦公室應用軟件</A>'+ 
    '<LI><A href="products_and_services_desktop_service_ict_equip_cabling.html" target=_parent>佈線及電訊配置服務</A>'+ 
    '<LI><A href="products_and_services_desktop_service_ict_equip_comm.html" target=_parent>通訊設備</A>'+ 
    '<LI><A href="products_and_services_internet_services_ip_surveillance.html" target=_parent>IP視象監察 </A></LI>'+
  '</UL>'+
'</SPAN>'+
'<DIV class=subtitle onclick="SwitchMenu(\'sub5\')">'+
  '<A class=menuWithLink href="products_and_services_internet_services.html">互聯網服務</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub5>'+
  '<UL>'+
    '<LI><A href="products_and_services_internet_services_dedicated_internet.html" target=_parent>上網專線</A>'+ 
    '<LI><A href="products_and_services_china_direct_internet_access.html" target=_parent>中國上網專線</A>'+ 
    '<LI><A href="products_and_services_internet_services_ip_transit.html" target=_parent>本地及國際頻寬</A> '+
    '<LI><A href="products_and_services_internet_services_broadband_webtone.html" target=_parent>商業寬頻</A>'+ 
    '<LI><A href="products_and_services_value_added_internet_roaming.html" target=_parent>互聯網漫遊服務 </A></LI>'+
  '</UL>'+
'</SPAN>'+
'<DIV class=subtitle onclick="SwitchMenu(\'sub6\')">'+
  '<A class=menuWithLink href="products_and_services_messaging_and_communication.html">訊息通訊方案</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub6>'+
  '<UL>'+
    '<LI><A href="products_and_services_messaging_icommunicator.html" target=_parent>全方位通訊服務</A>'+ 
    '<LI><A href="products_and_services_total_messaging_solutions.html" target=_parent>郵件整體解決方案</A>'+ 
    '<LI><A href="products_and_services_messaging_web_service.html" target=_parent>網上服務</A> </LI></UL></SPAN>'+
'<DIV class=title onclick="p(\'products_and_services_professional_network.html\');">網絡方案</DIV>'+
'<SPAN class=submenu id=sub7>'+
  '<!--<UL>'+
    '<LI><A href="#" target=_parent>網絡建設</A>'+ 
    '<LI><A href="#" target=_parent>儲存方案</A>'+  
    '<LI><A href="#" target=_parent>通訊系統整合</A>'+ 
    '<LI><A href="#" target=_parent>企業網絡設計</A>'+ 
    '<LI><A href="#" target=_parent>網絡保安</A> </LI>'+
  '</UL> --></SPAN>'+
'<DIV class=subtitle onclick="SwitchMenu(\'sub8\')">'+
  '<A class=menuWithLink href="products_and_services_security.html">通訊保安</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub8>'+
  '<UL>'+
    '<LI><A href="products_and_services_value_added_anti_virus.html" target=_parent>電郵防毒 + 垃圾電郵<BR>過濾服務</A>'+ 
    '<LI><A href="products_and_services_internet_services_pc_secure.html" target=_parent>電腦保安盾</A>'+ 
    '<LI><A href="products_and_services_value_added_mobile_secure.html" target=_parent>手機保安盾</A> </LI>'+
  '</UL>'+
'</SPAN>'+
'<DIV class=subtitle onclick="SwitchMenu(\'sub9\')">'+
  '<A class=menuWithLink href="products_and_services_voice_services.html">全方位通訊服務</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub9>'+
  '<UL>'+
    '<LI><A href="products_and_services_value_added_ifax.html" target=_parent>iFAX「網傳真」</A>'+ 
    '<LI><A href="products_and_services_voice_services_business_line.html" target=_parent>商業電話線</A>'+ 
    '<LI><A href="products_and_services_voice_services_supertone.html" target=_parent>SuperTone</A>'+ 
    '<LI><A href="products_and_services_voice_services_centrex.html" target=_parent>先進通</A>'+ 
    '<LI><A href="products_and_services_voice_services_idd_services.html" target=_parent>IDD 服務 </A>'+
    '<LI><A href="products_and_services_voice_services_call_management.html" target=_parent>來電功能組合 </A>'+
    '<LI><A href="products_and_services_voice_services_message_master.html" target=_parent>訊息通 </A>'+
    '<LI><A href="products_and_services_voice_services_call_center.html" target=_parent>電話中心 </A>'+
    '<LI><A href="products_and_services_value_added_info_service.html" target=_parent>資訊通服務 </A></LI></UL></SPAN></DIV>';
//<SCRIPT language=javascript>document.write(menu_product_and_service_zh);</SCRIPT>

var menu_product_and_service_en='<DIV class=subtitle onclick="SwitchMenu(\'sub1\')">'+
  '<A class=menuWithLink href="products_and_services_conferencing_services.html">Conferencing Services </A>'+
'</DIV>'+
'<SPAN class=submenu id=sub1>'+
  '<UL>'+
    '<LI><A href="products_and_services_conferencing_services_audio_conferencing.html" target=_parent>Audio Conferencing</A>'+ 
    '<LI><A href="products_and_services_conferencing_services_video_conferencing.html" target=_parent>Video Conferencing</A>'+ 
    '<LI><A href="products_and_services_conferencing_services_web_conferencing.html" target=_parent>Web Conferencing</A>'+ 
    '<LI><A href="products_and_services_conferencing_services_reservations_enquiries.html" target=_parent>Reservations and Enquiries</A> </LI>'+
  '</UL>'+
'</SPAN>'+
'<DIV class=subtitle onclick="SwitchMenu(\'sub2\')">'+
  '<A class=menuWithLink href="products_and_services_data_centre.html">Data Centre &amp; Business <BR>Continuity</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub2>'+
  '<UL>'+
    '<LI><A href="products_and_services_data_centre_idatacentre.html" target=_parent>Data Centre</A>'+ 
    '<LI><A href="products_and_services_data_centre_business_continuity.html" target=_parent>Business Continuity and Disaster Recovery Services</A>'+ 
    '<LI><A href="products_and_services_data_services_facility_management.html" target=_parent>Facility Management </A></LI>'+
  '</UL>'+
'</SPAN>'+
'<DIV class=subtitle onclick="SwitchMenu(\'sub3\')">'+
  '<A class=menuWithLink href="products_and_services_data_services.html">Data Connectivity </A>'+
'</DIV>'+
'<SPAN class=submenu id=sub3>'+
  '<UL>'+
    '<LI class=smallCaps><A href="products_and_services_data_services_point_to_point_ethernet.html" target=_parent>Point-to-Point Ethernet</A>'+ 
    '<LI class=smallCaps><A href="products_and_services_data_services_metro_ethernet.html" target=_parent>Metro Ethernet</A>'+ 
    '<LI><A href="products_and_services_data_services_local_ip_vpn.html" target=_parent>Local IP VPN</A>'+ 
    '<LI><A href="products_and_services_data_services_international_services.html" target=_parent>International MPLS Services</A>'+ 
    '<LI><A href="products_and_services_data_services_international_ethernet.html" target=_parent>IEPL</A>'+ 
    '<LI><A href="products_and_services_data_services_international_services_iplc.html" target=_parent>IPLC</A>'+ 
    '<LI><A href="products_and_services_data_services_data_connect.html" target=_parent>Leased Line </A>'+
    '<LI class=smallCaps><A href="products_and_services_data_services_atm.html" target=_parent>ATM</A>'+ 
    '<LI class=smallCaps><A href="products_and_services_data_services_frame_relay.html" target=_parent>Frame Relay</A>'+ 
    '<LI class=smallCaps><A href="products_and_services_data_services_escon_fibre.html" target=_parent>ESCON / Fibre Channel</A>'+ 
    '<LI class=smallCaps><A href="products_and_services_data_services_videoline_videolink.html" target=_parent>Video Link</A> </LI>'+
  '</UL>'+
'</SPAN>'+
'<DIV class=subtitle onclick="SwitchMenu(\'sub4\')">'+
  '<A class=menuWithLink href="products_and_services_desktop_service_ict_equip.html">Desktop Services and ICT Equipment</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub4>'+
  '<UL>'+
    '<LI><A href="products_and_services_desktop_service_ict_equip_it.html" target=_parent>IT &amp; Equipment</A>'+ 
    '<LI><A href="products_and_services_desktop_service_ict_equip_office.html" target=_parent>Office Applications</A>'+ 
    '<LI><A href="products_and_services_desktop_service_ict_equip_cabling.html" target=_parent>Cabling &amp; Telecommunication <BR>Setup Service</A>'+ 
    '<LI><A href="products_and_services_desktop_service_ict_equip_comm.html" target=_parent>Communication Equipment</A>'+ 
    '<LI><A href="products_and_services_internet_services_ip_surveillance.html" target=_parent>IP Surveillance</A> </LI></UL></SPAN>'+
'<DIV class=subtitle onclick="SwitchMenu(\'sub5\')">'+
  '<A class=menuWithLink href="products_and_services_internet_services.html">Internet Connectivity</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub5>'+
  '<UL>'+
    '<LI><A href="products_and_services_internet_services_dedicated_internet.html" target=_parent>Dedicated Internet Access</A>'+ 
    '<LI><A href="products_and_services_china_direct_internet_access.html" target=_parent>China Direct Internet Access</A>'+ 
    '<LI><A href="products_and_services_internet_services_ip_transit.html" target=_parent>IP Transit</A>'+ 
    '<LI><A href="products_and_services_internet_services_broadband_webtone.html" target=_parent>Business Broadband</A>'+ 
    '<LI><A href="products_and_services_value_added_internet_roaming.html" target=_parent>Internet Roaming Service</A> </LI></UL></SPAN>'+
'<DIV class=subtitle onclick="SwitchMenu(\'sub6\')">'+
  '<A class=menuWithLink href="products_and_services_messaging_and_communication.html">Messaging and <BR>Communication</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub6>'+
  '<UL>'+
    '<LI><A href="products_and_services_messaging_icommunicator.html" target=_parent>iCommunication</A>'+ 
    '<LI><A href="products_and_services_total_messaging_solutions.html" target=_parent>Total Messaging</A>'+ 
    '<LI><A href="products_and_services_messaging_web_service.html" target=_parent>Web Service</A> </LI></UL></SPAN>'+
'<DIV class=title onclick="p(\'products_and_services_professional_network.html\');">Network Solutions</DIV>'+
'<SPAN class=submenu id=sub7>'+
  '<!--/*<UL>'+
    '<LI><A href="#" target=_parent>Networking</A>'+ 
    '<LI><A href="#" target=_parent>Storage Solution</A>'+ 
    '<LI><A href="#" target=_parent>Communications System Integration</A>'+ 
    '<LI><A href="#" target=_parent>Corporate Network Design</A>'+ 
    '<LI><A href="#" target=_parent>Network Security</A> </LI></UL>  --></SPAN>'+
'<DIV class=subtitle onclick="SwitchMenu(\'sub8\')">'+
  '<A class=menuWithLink href="products_and_services_security.html">Security Solutions</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub8>'+
  '<UL>'+
    '<LI><A href="products_and_services_value_added_anti_virus.html" target=_parent>Anti-Virus + Anti Spamming Service</A>'+ 
    '<LI><A href="products_and_services_internet_services_pc_secure.html" target=_parent>PC Secure</A>'+ 
    '<LI><A href="products_and_services_value_added_mobile_secure.html" target=_parent>Mobile Secure</A> </LI>'+
  '</UL>'+
'</SPAN>'+
'<DIV class=subtitle onclick="SwitchMenu(\'sub9\')">'+
  '<A class=menuWithLink href="products_and_services_voice_services.html">Unified Communications</A>'+
'</DIV>'+
'<SPAN class=submenu id=sub9>'+
  '<UL>'+
    '<LI><A href="products_and_services_value_added_ifax.html" target=_parent>iFax</A>'+ 
    '<LI><A href="products_and_services_voice_services_business_line.html" target=_parent>BusinessLine</A>'+ 
    '<LI><A href="products_and_services_voice_services_supertone.html" target=_parent>SuperTone</A>'+ 
    '<LI><A href="products_and_services_voice_services_centrex.html" target=_parent>Centrex</A>'+ 
    '<LI><A href="products_and_services_voice_services_idd_services.html" target=_parent>IDD Services</A>'+ 
    '<LI><A href="products_and_services_voice_services_call_management.html" target=_parent>Call Managment Services</A>'+ 
    '<LI><A href="products_and_services_voice_services_message_master.html" target=_parent>Message Master</A>'+ 
    '<LI><A href="products_and_services_voice_services_call_center.html" target=_parent>Call Center</A>'+ 
    '<LI><A href="products_and_services_value_added_info_service.html" target=_parent>Info Service</A> </LI>'+
  '</UL>'+
'</SPAN>'+
'</DIV>';
//<SCRIPT language=javascript>document.write(menu_product_and_service_en);</SCRIPT>

var menu_home_more2_zh='<DIV class=title onclick="p(\'ict_solution_overview.html\');">資訊及通訊科技方案概覽 </DIV>';
//<SCRIPT language=javascript>document.write(menu_home_more2_zh);</SCRIPT>

var menu_home_more2_en='<DIV class=title onclick="p(\'ict_solution_overview.html\');">ICT Solution Overview</DIV>';
//<SCRIPT language=javascript>document.write(menu_home_more2_en);</SCRIPT>
