It is probably the
ball.xspeed = Math.random()*8-4;
ball.yspeed = Math.random()*8-4;
These generate floating point xspeed and yspeeds. The rounded/float/ceil values of which are used to draw in the screen. I think when the collision detection routine run and checks for a collision it cannot find one when the balls are only a very small distances apart in calculation, but when the speed is much higher, the next step will push the balls into their boundaries. Once they are inside each other the function manage_bounce(ball, ball2) will be invoked on every increment, and try to adjust the bounce direction, but only to find another collision.
I think the main problem is the big increment in the coordinated due to big value of speed, but a small distance between the two balls, which push them inside each other, mode than the floating point calculations.
During calculation when you have detected collision you should make sure at that point that they are not inside each other, and if yes then take them out and reposition. OR you might consider a speed increment IF the two balls are more pixels apart than the added distance, OR something like this
if the balls are `dn` pixels apart
if the speed in direction `n` is `n_speed`
then
if `dn` < `n_speed`
`n = n + dn`
else
`n = n + n_speed`
endif
endif
endif