Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
automatically set a website as the homepage?
Simple enougth to make a bookmark this page link on a site but why not make a hotspot on a site right in the middle or the whole page and a on event action so you could do on mouse over and then run the rest of it like a link.
[Edit] Hope this make's sence it does in my mind, but don't think it was worded well and I can not gurantee this will work. [/edit]
This works for IE, Firefox and Netscape although it requires a confirmation in FF:
function bookmark(){
var title = 'Example Site FTW';
var url = 'http://www.example.com';
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
else if (window.sidebar&&window.sidebar.addPanel)
window.sidebar.addPanel(title,url,"");
}
</script>
<a href="javascript:bookmark()">Bookmark this site</a>```