// JavaScript Document
if(self!=top){top.location.href=self.location.href;}
var domain='status-creditcard.com';



function acc(){
	var location=document.location.href;
	if(location.indexOf('//localhost/') >= 0 || location.indexOf('//local.') >= 0 || location.indexOf('//192.168.1.') >= 0){
		return;
	}

	
	dN=new Date;
	Mins=dN.getMinutes();
	Secs=dN.getSeconds();
	URL=document.referrer;
	cls=getPage();

	if(URL==""){URL="Unknown";}
	document.write("<img src=");
	document.write("http://www.status-creditcard.com/_REPORT/acclog/log.cgi?");
	document.write(cls);
	document.write(","+location+","+URL+",");
	document.write(Mins+Secs);
	document.write(">");
}

function getPage(){
	var lc=document.location.href;
	var dlength=domain.length;
	
	if(lc.indexOf(domain)){
		var tmp=lc.indexOf(domain,0)+dlength;
		var tmp=lc.substring(tmp);

		return(tmp);
	}
}