function findPos() {
	 var browser = navigator.appName;
	 var version = navigator.appVersion.substring(0,1);
	 var subversion = navigator.appVersion.substring(2,4)*1;
obj = document.getElementById("footer");
d = document.getElementById("pozice");
aa=d.offsetTop;
winHeight = document.documentElement.clientHeight;
if (browser=='Opera' &  version=='9' & subversion<50 ) {
	winHeight = document.body.clientHeight;
}		
a=winHeight-aa+150;
//alert(a);
if(a>150) {
obj.style.height=''+a+'px';
}
}

