/*
Name:           global_bookmark
Purpose:        Opens bookmark dislog depending on the browser
Variables:      None
Returns:        None
*/

function global_bookmark()
  {
   var url = "" + window.location.href;
   var title = "" + document.title;
          if(window.sidebar){ // firefox
             window.sidebar.addPanel(title, url, "");
          }
          else if(document.all)// ie
          {
             window.external.AddFavorite(url, title);
          }
          else
          {
         alert("This browser does not support this functionality.\nPlease bookmark this page using \"CTRL+D\" or \"CMD+D\".");  
	 }
}




