function dymek(nazwa) { iemouse(nazwa); } function iemouse(nazwa){ ypos = document.body.scrollTop + event.y; xpos = document.body.scrollLeft + event.x; //window.status=xpos+" , "+ypos; document.getElementById(nazwa).style.left=xpos+5; document.getElementById(nazwa).style.top=ypos-25; document.getElementById(nazwa).style.visibility='visible'; } function czysc(nazwa) { document.getElementById(nazwa).style.visibility='hidden'; }