If I understand you correctly, you want your links to take you to a page that will display your Google AdSense and then maybe have a "Continue" button that will send them to the real address.
And I am assuming that the numbers that are at the end of these addresses are id numbers for the Google AdSense code?
http://save-link.info/5728
http://takemyfile.com/200776
http://1tool.biz/121081
Ok, well there are a couple ways you could do this.
But either way you decide, you will need some PHP code.
So you will need PHP on your host server.
This could be done on one page by sending a name/value pair to itself.
You do this by adding the name and value to the url.
example: <a href="?num=5728">Save-Link.Info</a>
example: <a href="?num=200776">TMF Download Center!</a>
example: <a href="?num=121081">1Tool.Biz - One tool to get them all!</a>
This will allow you to collect PHP's $_GET["num"] variable and use it in the page.
Or you could use two separate pages,
having the links send you to the second page which then processes the $_GET["num"] variable
and displays the Google AdSense code along with a button that will send you to the correct url.
If you have PHP and you want a little help, let me know.