Thanks for all the comments, I appreciated and glad you guys liked it.
About those issues, coolfactor, I don’t know that Camino browser, and, as I understood, it’s a mac version, right?
I did test this site under IE6, IE7, FF1.5 and FF2. It works everything ok, however, since camino is FF derivative it should work also. The “Favorites” function was supposed to be cross-browser, but since I don’t have other browsers to test it, I’m kinda limited 
Here’s my JS function for the bookmarking:
function dwBookmark(title, url) {
if (window.sidebar) window.sidebar.addPanel(title, url,"");
else if (window.opera && window.print) {
var mbm = document.createElement('a');
mbm.setAttribute('rel','sidebar');
mbm.setAttribute('href',url);
mbm.setAttribute('title',title);
mbm.click();
} else if (document.all) window.external.AddFavorite(url, title);
}
PS, Fuseblown, yeap, Soccer