function start()
{
	
	szer=window.screen.width;
	wys=window.screen.height;
 	if(szer==1024)
	{
 		l=szer-220;
 		t=wys-480;
		document.getElementById('special').style.left=l;
		document.getElementById('special').style.top=t;
 	};
};

function pokazUkryj(id)
{
	document.getElementById(id).style.display = (document.getElementById(id).style.display == "none") ? "block" : "none";
}



