window.onload=function(){
	var file = "http://forif.info/alg/";
	var now_dom = new String( document.domain );
	if( now_dom == "localhost" ){
		file = "./";
	}
	if( file ){
		file += "red.cgi";

		var lc = new String( document.URL );
		file += "?loc=" + escape( lc );

		var rf = "No-Referer";
		if( document.referrer ){
			rf = new String( document.referrer );
		}
		file += "&ref=" + escape( rf );
		file += "&sc_wdt=" + window.screen.width;
		file += "&sc_hgt=" + window.screen.height;
		file += "&sc_cdp=" + window.screen.colorDepth;
		if( document.getElementsByTagName( "BODY" ).length ){
			if( document.body.clientWidth ){
				file += "&cl_wdt=" + document.body.clientWidth;
				file += "&cl_hgt=" + document.body.clientHeight;
			}
		}
		if( window.innerWidth ){
			file += "&in_wdt=" + window.innerWidth;
			file += "&in_hgt=" + window.innerHeight;
		}
		if( navigator.appCodeName ){
			file += "&nv_cdn=" + escape( navigator.appCodeName );
		}
		if( navigator.appMinorVersion ){
			file += "&nv_mvr=" + escape( navigator.appMinorVersion );
		}
		if( navigator.appName ){
			file += "&nv_nam=" + escape( navigator.appName );
		}
		if( navigator.appVersion ){
			file += "&nv_ver=" + escape( navigator.appVersion );
		}
		if( navigator.cookieEnabled ){
			file += "&nv_cok=" + escape( navigator.cookieEnabled );
		}
		if( navigator.cpuClass ){
			file += "&nv_cpu=" + escape( navigator.cpuClass );
		}
		if( navigator.platform ){
			file += "&nv_plf=" + escape( navigator.platform );
		}
		document.getElementById( "tracing" ).setAttribute( "SRC", file, 0 );
	}
}

