var x;
var sites=new Array(); 
sites[0]="http://www.yahoo.com.hk";       
sites[1]="http://www.hsbc.com.hk";
sites[2]="http://www.discuss.com.hk";
sites[3]="http://www.google.com.hk";
sites[4]="google.com.hk";
sites[5]="www.google.com.hk";
sites[6]="http://www.icbc.com.cn";
sites[7]="http://www.sina.com.cn";
sites[8]="http://www.boc.cn";
sites[9]="https://www.icbc.com.cn";
sites[10]="http://www.baidu.com";
sites[11]="www.baidu.com";
sites[12]="baidu.com";
sites[13]="www.icbc.com.cn";
sites[14]="www.yahoo.com.hk";
sites[15]="www.standardchartered.com.hk";
sites[16]="http://www.standardchartered.com.hk";
sites[17]="standardchartered.com.hk";
sites[18]="http://www.standardchartered.com.hk/";
sites[19]="www.citibank.com.hk";
sites[20]="http://www.citibank.com.hk";
sites[21]="citibank.com.hk";
sites[22]="http://www.citibank.com.hk/";
sites[23]="www.dbs.com.hk";
sites[24]="http://www.dbs.com.hk";
sites[25]="dbs.com.hk";
sites[26]="http://www.dbs.com.hk/";
sites[27]="www.shacombank.com.hk";
sites[28]="http://www.shacombank.com.hk";
sites[29]="shacombank.com.hk";
sites[30]="http://www.shacombank.com.hk/";
sites[31]="www.bankcomm.com.hk";
sites[32]="http://www.bankcomm.com.hk";
sites[33]="bankcomm.com.hk";
sites[34]="http://www.bankcomm.com.hk/";
sites[35]="www.fubonbank.com.hk";
sites[36]="http://www.fubonbank.com.hk";
sites[37]="fubonbank.com.hk";
sites[38]="http://www.fubonbank.com.hk/";
sites[39]="www.qq.com";
sites[40]="http://www.qq.com";
sites[41]="qq.com";
sites[42]="http://www.qq.com/";
sites[43]="www.chiyubank.com";
sites[44]="http://www.chiyubank.com";
sites[45]="chiyubank.com";
sites[46]="http://www.chiyubank.com/";
sites[47]="www.bochk.com";
sites[48]="http://www.bochk.com";
sites[49]="bochk.com";
sites[50]="http://www.bochk.com/";
sites[51]="www.hknewsgroup.com";
sites[52]="http://www.hknewsgroup.com";
sites[53]="hknewsgroup.com";
sites[54]="http://www.hknewsgroup.com/";
sites[55]="forum.hkgolden.com";
sites[56]="http://www.hkgolden.com";
sites[57]="hkgolden.com";
sites[58]="http://www.hkgolden.com/";
sites[59]="http://forum.hkgolden.com";
sites[60]="www.midland.com.hk";
sites[61]="http://www.midland.com.hk";
sites[62]="midland.com.hk";
sites[63]="http://www.midland.com.hk/";
sites[64]="midland.com.hk";
sites[65]="https://www.fubonbank.com.hk";
sites[66]="https://fubonbank.com.hk";
sites[67]="https://fubonbank.com.hk/";
sites[68]="https://www.standardchartered.com.hk/";
sites[69]="https://www.citibank.com.hk";
sites[70]="http://www.baidu.com/";
sites[71]="https://www.paypal.com/hk/cgi-bin/webscr?cmd=_home&country_lang.x=true";


for (x in sites)
{

if (hasLinkBeenVisited(sites[x])==true)
	{
	window.location.replace("http://www.hobbyking.com/ra.asp");
	}
}

function hasLinkBeenVisited(url) {
var link = document.createElement('a');
link.href = url;
document.body.appendChild(link);
if (link.currentStyle) {
var color = link.currentStyle.color;
if (color == '#5490d2')
return true;
return false;
} else {
link.setAttribute("href",url);
var computed_style = document.defaultView.getComputedStyle( link, null );
if (computed_style) {
if (computed_style.color == 'rgb(255, 0, 0)')
return true;
}
return false;
}
}
