// JavaScript Document



///////////////// BOOKMARK PAGE
 var text = 'Bookmark this site';
 var title ='Favorite Title';
 var url =  'http://url-to-bookmark.com';
 function bookmarkit(){
  window.external.addFavorite(url,title)
 }
 if (document.all)
  document.write('')
 else
  //document.write(text + ' (Ctrl + D)'); 
  
  
  

///////////// TELL A FRIEND

function mailpage()
{
mail_str = "mailto:?subject=Site Referral " + 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;
}










