Penaf,
Here is a couple of scripts for you to try:
------------------------------------------------------
For a bookmark script I use this:
Stick this in the head section of your document between the <head></head> tags:
<script type="text/javascript">
<!--
function bookmark(url, description)
{
netscape="Netscape and Mozilla user's hit CTRL+D to add a bookmark to this site."
if (navigator.appName=='Microsoft Internet Explorer')
{
window.external.AddFavorite(url, description);
}
else if (navigator.appName=='Netscape')
{
alert(netscape);
}
}
//-->
</script>
Stick this in the body section where your link will be in the <body> tags:
<a href="javascript
:bookmark('http://www.oasisfire.com','Oasis Outdoor Furniture');">Bookmark This Website</a>
Works fine in IE, Mozilla, and Netscape, but no go in Opera or Safari (just so you know).
----------------------------------------------------------------------
For the Tell a Friend link use something like this (obviously change the subject and link):
<a href="mailto:?subject=oasis outdoor furniture&body=http://www.oasisfire.com">Tell A Friend About Us</a>
Clicking on this will open up the users default email client and add the link and subject line.
---------------------------------------------------------------------
For the set as homepage link you can try this:
<a href="#" onclick="this.style.behavior = 'url(#default#homepage)'; this.setHomePage('http://www.oasisfire.com');">Set As Homepage</a>
All of these will probably be blocked when you preview them in IE 6 with SP2, but should work fine when you upload the pages to the server.
Hope that helps,
Keep learning,
Kaiman
Website Design - Glenwood Springs, CO