// JavaScript Document function toGo(idn,zoomy){ var heightnow=parseInt(document.getElementById(idn).style.top); heightnow+=zoomy; document.getElementById(idn).style.top=heightnow+"px"; } function getMouse(e){ var mousY=parseInt(e.clientY); var mousX=parseInt(e.clientX); return{mouseY:mousY,mouseX:mousX}; }