Delete the top and left styles and add display:none;to the radio input. If the scrollbars are turned on, if you focus on the input outside the viewport, it scrolls to that element.
, , javascript
var donotScroll = function(element) {
var x = window.scrollX, y = window.scrollY;
element.focus();
window.scrollTo(x, y);
}