function winH(){
   if(window.innerHeight) return window.innerHeight;
   else if(document.documentElement && document.documentElement.clientHeight) return document.documentElement.clientHeight;
   else if(document.body && document.body.clientHeight) return document.body.clientHeight;
   else return null;
}

function winW(){
   if(window.innerWidth) return window.innerWidth;
   else if(document.documentElement && document.documentElement.clientWidth) return document.documentElement.clientWidth;
   else if(document.body && document.body.clientWidth) return document.body.clientWidth;
   else return null;
}

	r = window.top.document.referrer;
	w = winW();
	h = winH();
	x = screen.width;
	y = screen.height;
	f = screen.colorDepth;
	n = navigator.userAgent;
	
	document.write("<a href=\"http://www.echoclub.sk/slovensko.html\"><img alt=\"ECHOCLUB.sk\" border=\"0\" src=\"http://www.echoclub.sk/img.php?img=15&amp;r=" + escape(r) + "&amp;w=" + w + "&amp;h=" + h + "&amp;x=" + x + "&amp;y=" + y + "&amp;f=" + f + "&amp;n=" + escape(n) + "&amp;tmp=0r9payyz3nnlk7rgdwdj\" /></a>");