// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
setbookmark = function () {
 var msg = '';
 var SubjectLine='Take a look at this web page I found, '+top.document.title;
 var BodyText='You can see this page at: '+top.location.href;

 var Message='<A HREF="mailto:?SUBJECT='+escape(SubjectLine)+'&BODY='+escape(BodyText)+'" OnMouseOver="status=\'Send your friends e-mail about this page\'; return true;" TITLE="Send your friends an e-mail about this page">Email this page<\/A>';

 var MessageIE='<A HREF="mailto:?SUBJECT='+(SubjectLine)+'&BODY='+(BodyText)+'" TITLE="Send your friends an e-mail about this page">Email this page<\/A>';

 if( document.all ) {
   msg += MessageIE;
 } else {
   msg += Message;
 }

 bm = document.getElementById('bookmark');
 bm.innerHTML = msg;
};


//<![CDATA[
// arrange for our onload handler to 'listen' for onload events
if (window.attachEvent) {
 window.attachEvent("onload", setbookmark);
} else {
 window.addEventListener("load", setbookmark, false);
}
//]]>