var RecordedSites = new Array();
function outLink(SiteID,FromWhere){
	if (!RecordedSites[SiteID]) {
		yenioge = AjaxActions.length;
		AjaxActions[yenioge] = new AjaxPost();
		AjaxActions[yenioge].ResponseFunction = outLinkResponse;
		AjaxActions[yenioge].fStartAction( 'Sources/Php/ToplistoutLink.php?Rand='+Math.random(10000), "SiteID="+SiteID+"&IP="+ip+"&Browser="+navigator.appName+"&Resolution="+screen.width+"x"+screen.height, 'outLinkResponse', yenioge );
	}
}
function outLinkResponse(Result){
	eval(Result);
	return true;
}
function logRecordedSite(SiteID){
	RecordedSites[SiteID] = true;
}