function createbookmarklink(BookmarkURL,BookmarkTitle){
     // var BookmarkURL="http://www.lifevpn.com/support_en.php"
     // var BookmarkTitle="LifeVPN Support"
      // If the browser is Internet Explorer
      if (document.all)
      {
              // Add to Favorites (Internet Explorer)
              window.external.AddFavorite(BookmarkURL,BookmarkTitle);
      }
      else
      {
              // Add to Bookmarks (Mozilla Firefox)
              window.sidebar.addPanel(BookmarkTitle, BookmarkURL, '');
      }
}


