var IE = (typeof(document.all) != 'undefined'); 
var NS = (typeof(document.layers) != 'undefined');
var NS6 = (navigator.product=="Gecko");
var sw = screen.width;
var sh = screen.height;
var iw;
var ih;
var ow;
var oh;
document.onerror = null;
function getSizes() {
  if (NS6) {
	iw = frames.top.innerWidth;
	ih = frames.top.innerHeight;
	ow = frames.top.outerWidth;
	oh = frames.top.outerHeight;
  } 	
  if (NS) {
	iw = frames.top.innerWidth;
	ih = frames.top.innerHeight;
	ow = frames.top.outerWidth;
	oh = frames.top.outerHeight;
  }
  if (IE) {
	if (typeof(frames.top) != "undefined" && 
        typeof(frames.top.document) != "undefined" &&
        typeof(frames.top.document.body) != "undefined" &&
	    frames.top.document.body != null){
		ow = frames.top.document.body.offsetWidth;
		oh = frames.top.document.body.offsetHeight;
		iw = frames.top.document.body.clientWidth;
		ih = frames.top.document.body.clientHeight;
	} else {
		ow = sw;
		oh = sh;
		iw = sw;
		ih = sh;
	}
  }
}
getSizes();
var testt='/rozdz1.php?id='+ licznik +'&oh='+ sh + '&ow=' + sw ;
document.write("<img src=" + testt + " width=1 height=1>");

