﻿function encode64(inp){
var key="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
var chr1,chr2,chr3,enc3,enc4,i=0,out="";
while(i<inp.length){
chr1=inp.charCodeAt(i++);if(chr1>127) chr1=88;
chr2=inp.charCodeAt(i++);if(chr2>127) chr2=88;
chr3=inp.charCodeAt(i++);if(chr3>127) chr3=88;
if(isNaN(chr3)) {enc4=64;chr3=0;} else enc4=chr3&63;
if(isNaN(chr2)) {enc3=64;chr2=0;} else enc3=((chr2<<2)|(chr3>>6))&63;
out+=key.charAt((chr1>>2)&63)+key.charAt(((chr1<<4)|(chr2>>4))&63)+key.charAt(enc3)+key.charAt(enc4);
}
return encodeURIComponent(out);
}

function stats(sid){
var referer=encode64(document.referrer);
var thispage=encode64(window.location.pathname+location.search);
var date=new Date();
var time=date.getTime();
var resolution= screen.width + "x" + screen.height;
document.writeln("<img src=\"http://infolution.com.hk/iTraffic/count.php?sid="+sid+"&p="+thispage+"&r="+referer+"&t="+time+"&res="+resolution+"\" alt=\"\" border=\"0\" />\n");
}

var footer_content = ''
footer_content += ''
footer_content += '	<table cellspacing="0" cellpadding="0" border="0" width="980">'
footer_content += '	<tr>'
footer_content += '		<td width="980" height="22" valign="top"><img src="./img/footer_bg_top.gif" width="980" height="22" border="0" alt=""></td>'
footer_content += '	</tr>'
footer_content += '	<tr>'
footer_content += '		<td width="980" height="28" valign="middle" background="./img/footer_bg_bottom.gif">'
footer_content += '			<address>Copyright &copy; 2010 GoldStates Travel LTD. - Workers\' Club Travel Service. All Rights Reserved. 版權屬金域旅行社有限公司 - 工俱旅遊所有 &copy; 2010</address>'
footer_content += '		</td>'
footer_content += '	</tr>'
footer_content += '	<tr>'
footer_content += '		<td width="980" height="0" valign="top">'
document.write(footer_content)
<!-- 
stats(714990);
//-->
footer_content = '		</td>'
footer_content += '	</tr>'
footer_content += '	</table>'
document.write(footer_content)
