function bookmarksite(title, url){

if (window.sidebar)window.sidebar.addPanel(title, url, ""); //for Firefox, is faulty but will have to do for now.

else if (document.all)window.external.AddFavorite(url, title); //for Internet Explorer

// for Chrome & Safari
else if (navigator.appName == "Netscape")alert("(For Google Chrome) \n \n Press \"Ctrl + D\" on keyboard to Bookmark site: \n \n 1. Hold \"Ctrl\" key \n 2. Then press the \"D\" key on keyboard   \n \n \n    - - - - - - - - - - - - - - - - - - - - - - - \n \n \n(For Apple Safari) \n \n  Press \"CMD + D\" on keyboard to Bookmark site: \n \n 1. Hold \"command\" key \n 2. Then press the \"D\" key on keyboard");

 }

