function pokaz_okno_url(ida)
{		  
	var szer = pobierz_width_strony()/2;
  url = "js/mod_okno_url.php?ida="+ida+"&szer="+szer;
  url=encodeURI(url);
//alert(url);
//------- stworz obiekt
  startGETRequest(url,  onCompletepo, onEndpo);
}

function onEndpo(){
}

function onCompletepo(text, xml)
{  

  //zwroc komunikat i podziel go aby sprawdzic czy poprawny czy błąd
	  d = text.split("|");
  //jesli błąd to pokaz komunikat w formularzu	
  if(d[0] != "error"){
		document.getElementById('okno_url').innerHTML= d[1];
		}

}


function pobierz_width_strony(){
		var     ie  = navigator.appName == "Microsoft Internet Explorer";
		var  opera  = navigator.appName == "Opera";
		var width;

		if (ie) {width = document.body.offsetWidth;
			}
			else {
				width = window.innerWidth;
			}
			return width;
}
