// JavaScript Document
function addbookmark()
{
bookmarkurl=location.href
bookmarktitle="Dutch Grammar Tutorial"
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}
function mailpage()
{
  mail_str = "mailto:?subject= Recommended web page: " + document.title;
  mail_str += "&body=I recommend the following web page: " + document.title;
  mail_str += " at " + location.href; 
  location.href = mail_str;
}
function mailerror()
{
  mail_str = "mailto:info@dutchgrammar.com?subject= Error found on " + document.title;
  mail_str += "&body=I found an error: " + location.href; 
  location.href = mail_str;
}
