
function bookmark() {
   if (window.external) {
      window.external.AddFavorite(document.URL, document.title)
      }
   else if (window.sidebar) {
      window.sidebar.addPanel(document.title,document.URL, "")
      }
   else if( window.opera && window.print ) {
      return true; 
      }
   else{
      alert("your browser does not support this function.\n" +
             "Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark.\n")
      }
}

function mailpage()
{
    mail_str = "mailto:?subject=" + document.title
    mail_str += "&body=I thought you might be interested in " + document.title
    mail_str += ". You can view it at, " + "http://www.wmglaw.com"
    location.href = mail_str
}


function printpage()
{
    window.print();
}