function buildKIR(x,y) {
 body = document.getElementsByTagName('body')[0];
 kir = document.createElement('div');
 kir.style.position			= 'absolute';
 kir.style.top				= y+'px';
 kir.style.left				= x+'px';
 kir.style.width			= '20px';
 kir.style.height			= '31px';
 kir.style.zIndex			= '99';
 kir.style.backgroundImage	= 'url(http://www.ekk.pl/kir/kir.gif)';
// body.appendChild(kir);
}
