function getURLParam(strParamName) {
var strReturn = "";
var strHref = window.location.href;
if(strHref.indexOf("?") > -1) {
var strQueryString = strHref.substr(strHref.indexOf("?")).toLowerCase();
var aQueryString = strQueryString.split("&");
for(var iParam = 0; iParam < aQueryString.length; iParam++) {
if(aQueryString[iParam].indexOf(strParamName.toLowerCase() + "=") > -1) {
var aParam = aQueryString[iParam].split("=");
strReturn = aParam[1];
break;
}
}
}
return unescape(strReturn);
}
function writeChiHeader1(strParam) {
if (strParam != "1") {
new writeEngHeader();
}
else {
new writeChiHeader();
}
}
function writeURLImg(strParam2, imgURL, strDesc, strTitle) {
var strParam1 = getURLParam("chi");
document.write('');
document.write('
');
document.write('
'+strTitle+'');
}
function writeURLImg2(strTitle, imgURL, strLink) {
var strParam1 = getURLParam("chi");
document.write('');
document.write('
');
document.write('
'+strTitle+'');
}
function writeChiHeader2(strParam, strPage) {
var totPg = 6;
var curPg = strPage;
var newPg = 1;
newPg = totPg - curPg + 1;
if (strParam != "1") {
document.write('
');
document.write('Welcome to the CCT M.I.C.E. Team Gallery - Click to view album, enjoy!');
document.write(' |
Page - ');
document.write('1 | ');
document.write('2 | ');
document.write('3 | ');
document.write('4 | ');
document.write('5 | ');
document.write('6');
document.write(' -');
document.write(' |
You are currently viewing page '+newPg+'');
}
else {
document.write(' |
');
document.write('欢迎来到 CCT M.I.C.E. 图相廊,请选择以下一个相簿来观赏。');
document.write(' |
页数: - ');
document.write('1 | ');
document.write('2 | ');
document.write('3 | ');
document.write('4 | ');
document.write('5 | ');
document.write('6');
document.write(' -');
document.write(' |
您正在浏览第 '+newPg+' 页');
}
}
function writeAlbumHeader(strParam, strName, strDesc) {
if (strParam != "1") {
document.write(' |
');
document.write('Album Name: '+strName+'');
document.write('Description: '+strDesc);
document.write(' Note: Enlarged picture might take longer time to load. ');
document.write(' |
');
document.write('相簿名称: '+strName+'');
document.write('记述: '+strDesc);
document.write(' 注: 某些图片可能需要更长的时间下载。 ');
document.write(' |