function browserinfo()
  {
  if(parseFloat(navigator.appVersion)>=4)
    {
    s=screen;
    this.w=s.width;
    this.h=s.height;
    this.p=s.pixelDepth;
    this.c=s.colorDepth;
    this.r=escape(document.referrer);
	this.l=escape(location.href);
    this.dataString = "&w="+this.w+"&h="+this.h+"&p="+this.p+"&c="+this.c+"&r="+this.r+"&l="+this.l;		  
    }
  }
  
myBrowser = new browserinfo()

function mouseInfo(e)
  {
  if (ie4) 
    {
	this.posX = event.x + document.body.scrollLeft;
	this.posY = event.y + document.body.scrollTop;
	}
  else if (ns6)
    {
	this.posX = e.pageX;
	this.posY = e.pageY;
	}
  else
    {
	this.posX = e.x;
	this.posY = e.y;
	}  
  }
