function mailpage()
{
  mail_str = "mailto:?subject=Recommended Link from " + document.title;
  mail_str += "&body=I saw this page on the " + document.title;
  mail_str += " website. You should check it out at, " + location.href; 
  location.href = mail_str;
}

function bookmarksite()
{
    title = document.title;
    url = location.href;
    if (window.sidebar) window.sidebar.addPanel(title, url,"");
    else if( window.opera && window.print )
    {
	var bmanchor = document.createElement('a');
	bmanchor.setAttribute('rel','sidebar');
	bmanchor.setAttribute('href',url);
	bmanchor.setAttribute('title',title);
	bmanchor.click();
    }
    else if( document.all ) window.external.AddFavorite( url, title);
}
