function incSwitch(i) {
switch (i) {
  case 1:
    document.write('' +
    '        <table width="150" border="0" align="right" cellpadding="0" cellspacing="0">' +
    '          <tr>' +
    '            <td align="right"><font size="2"><a href="javascript:switchLang(1,2);">繁體版</a> ' +
    '              | <a href="javascript:switchLang(1,3);">簡體版</a></font></td>' +
    '          </tr>' +
    '        </table>' +
    '')
    break;
  case 2:
    if(document.URL.toString().search('/gb/') == -1) {
    document.write('' +
    '        <table width="150" border="0" align="right" cellpadding="0" cellspacing="0">' +
    '          <tr>' +
    '            <td align="right"><font size="2"><a href="javascript:switchLang(2,1);">英文版</a> ' +
    '              | <a href="javascript:switchLang(2,3);">簡體版</a></font></td>' +
    '          </tr>' +
    '        </table>' +
    '')
    }
    else {
    document.write('' +
    '        <table width="150" border="0" align="right" cellpadding="0" cellspacing="0">' +
    '          <tr>' +
    '            <td align="right"><font size="2"><a href="javascript:switchLang(3,1);">英文版</a> ' +
    '              | <a href="javascript:switchLang(3,2);">繁體版</a></font></td>' +
    '          </tr>' +
    '        </table>' +
    '')
    }
    break;
}
}

function incLink(i) {
var URL;
switch (i) {
  case 1:
    if(document.URL.toString().search('/gb/') == -1) {
      URL="http://www.tid.gov.hk/tc_chi/cepa/files/annex4_c.pdf";
    }
    else {
      URL="http://www.tid.gov.hk/tc_chi/cepa/files/annex4_c.pdf";
    }
    PopWin(URL,800,600);
  break;
  case 2:
    if(document.URL.toString().search('/gb/') == -1) {
      URL="http://www.tid.gov.hk/tc_chi/cepa/files/annex5_c.pdf";
    }
    else {
      URL="http://www.tid.gov.hk/sc_chi/cepa/files/annex5_sc.pdf";
    }
    PopWin(URL,800,600);
  break;
  case 3:
    if(document.URL.toString().search('/gb/') == -1) {
      URL="http://www.tid.gov.hk/tc_chi/cepa/trade_services.html";
    }
    else {
      URL="http://www.tid.gov.hk/sc_chi/cepa/trade_services.html";
    }
    PopWin(URL,800,600);
  break;
}
}

function incImage() {
    if(document.URL.toString().search('/gb/') == -1) {
      document.write('<img src="images/title.jpg" alt="《內地與香港關於建立更緊密經貿關係的安排》(《安排》)">');
    }
    else {
      document.write('<img src="images_gb/title.jpg" alt="《內地與香港關於建立更緊密經貿關係的安排》(《安排》)">');
    }
}