good, clean and short tutorial Hobbes
one small bit though: the download link isn't right:
http://www.hobbes.subhost.com.ar/www.hobbes.subho...hp?file=avatar.php
This must obviously be:
http://www.hobbes.subhost.com.ar/download.php?file=avatar.php
If you put
www.hobbes.subhost.com.ar/download.php?file=avatar.php then that's a relative link, meaning it will be put together with the main page's link and thus you'll get:
http://www.hobbes.subhost.com.ar/www.hobbes.subhost.com.ar/.....
so iether change it to:
http://www.hobbes.subhost.com.ar/download.php?file=avatar.php to make it an absolute link. Or:
download.php?file=avatar.php to make it simply and relative to the main page URL.
EDIT: John Anderton was first...
----------
Also the html page
avatar_script.htm: It doesn't contain the proper HTML tags!
Every html page must consist of:
<html>
<body>
</body>
</html>
even when they are frames... So the page
avatar_script.htm must be like this (just as other pages):
<html>
<head>
<meta (...)>
<style>
(...)
</style>
</head>
<body>
(...)
</body>
</html>