
if ( document.referrer.indexOf("www.daisyplanet.com") < 0 ) {
	br = navigator.userAgent + "-dp-" + document.referrer ;
	if (navigator.appVersion.charAt(0) >= 4) {
		br += "-Screen-" + screen.width + "x" + screen.height + "x" + screen.colorDepth;
	}
	ImgS = "";
	SL = br.length;
	for (i = 0 ; i < SL ; i++) {
		a = br.charAt(i);
		if ( a == " ") {
			ImgS += "%20";
		} else if ( a == ":" ) {
			ImgS += "%3A";
		} else {
			ImgS += a;
		}
	}
	Planet = new Image();
	Planet.src = "http://www.daisyplanet.com/browser/unknown.gif?" + ImgS;
}

function check() {
  if (top.location != self.location) {
      top.location = self.location ;
  }
}

