You can put this solution on YOUR website! Here is a pretty cool Babylonian system:
Let the number you are given be N.
We want sqrt(N).
N can be expressed as a^2 +-b.
The estimate is A +- b/2a.
---
ex: sqrt(20)
srt(20) = sqrt(4^2 + 4)
sqrt(20) ~ 4 + 4 / 2*4 ~ 4 + 1/2 ~ 4.5.
---
ex: sqrt(53)
sqrt(53) = sqrt (7^2 + 4)
sqrt(53) ~ 7 + 4 / 2*7 ~ 7 + 2/7 ~ 7.28.
---
Now, practice on your own.