function przesun(x2,y2){
	var x3,y3;
	if (self.pageYOffset) // all except Explorer
	{
		x3=window.innerWidth;
	}
	else if (document.documentElement && document.documentElement.scrollTop) // Explorer 6 Strict
	{
		x3= document.documentElement.clientWidth;
	}
	else if (document.body) // all other Explorers
	{
		x3=document.body.clientWidth;
	}
	document.getElementById('top_zajawka_pos').style.left=(x3/2)+x2+'px';
	document.getElementById('top_zajawka_pos').style.top=y2+'px';
}
