function mailpage()
{
mail_str = "mailto:?subject=Check out the  " + document.title;
mail_str += "&body=I thought you might be interested in the " + document.title;
mail_str += ". You can view it at, " + location.href; 
location.href = mail_str;
}

function mailpage2()
{

mail_str = "mailto:f.visser3@chello.nl?subject=A comment on:  " + document.title;
mail_str += "&body=Hi Frank, I'd like to comment on " + document.title;
mail_str += ". URL of the essay: " + location.href; 
location.href = mail_str;
}


 var urlAddress = location.href;
 var pageName = document.title;

 function addToFavorites()
 {
  if (window.external)
  {
   window.external.AddFavorite(urlAddress,pageName)
  }
  else
  { 
   alert("Sorry! Your browser doesn't support this function.");
  }
 }


 
