	function myINF(site) {
		this.site = site;
		this.imgarray = new Array;
		this.inf_ptr = 0;
		this.now = new Date();
		this.INF=new Object();
		this.addr = "info.5dogs.net";
		this.vars();
		this.mkTag();

	}
	myINF.prototype.vars = function () {
			this.INF.tz = this.now.getTimezoneOffset();
			this.INF.ul = navigator.appName=="Netscape" ? navigator.language : navigator.userLanguage;
			this.INF.cd = screen.colorDepth;
			this.INF.sr = screen.width+"x"+screen.height;
			this.INF.je = navigator.javaEnabled() ? "Y" : "N";
			this.INF.ti = document.title;
			this.INF.dt = this.now.getTime();
			if ((window.document.referrer != "") && (window.document.referrer != "-")){
				if (!(navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) < 4) ){
					this.INF.ref = window.document.referrer;
				}
			}
			this.INF.uri = window.location.pathname;
			this.INF.qry = window.location.search;
			this.INF.site = this.site
		}
	myINF.prototype.mkTag = function () {
			var P ="http"+(window.location.protocol.indexOf('https:')==0?'s':'')+"://"+this.addr+"/cleardot.gif?";
			for (N in this.INF){P+="&"+N+"="+escape(this.INF[N]);}
			this.createImage(P);
		}
	myINF.prototype.createImage = function (inf_src){
			if (document.images){
				this.imgarray[this.inf_ptr] = new Image;
				this.imgarray[this.inf_ptr].src = inf_src;
				this.inf_ptr++;
			}
		}
