// JavaScript Document<script type="text/javascript">
var sidebarurl = "http://www.dranalytix.com"; // Change as required
var sidebartitle = "DrAnalytix"; // Change as required
var url = this.location;
var title = document.title;

function bookmarksite() {
   if (window.sidebar && window.sidebar.addPanel) { // Firefox
      window.sidebar.addPanel(sidebartitle, sidebarurl,"");
   }
   else if ( document.all ) { // IE Favorite
      window.external.AddFavorite(url, title);
   }
   else if (window.opera && window.print) {
      // do nothing
   }
   else if (navigator.appName=="Netscape") {
      alert("Please click OK, then press <Ctrl-D> to bookmark this page.");
   }
}

if (window.sidebar && window.sidebar.addPanel) {
   document.write('<a href = "javascript:bookmarksite();"><img src="images/bookmark_icon.jpg" width="16" height="16" alt="bookmark" /><br />Bookmark This Site</a>');
}
else if (document.all) {
   document.write('<a href = "javascript:bookmarksite();"><img src="images/bookmark_icon.jpg" width="16" height="16" alt="bookmark" /><br />Bookmark This Site</a>');
}
else if (window.opera && window.print) {
   document.write('<a href = "'+sidebarurl+'" title="'+sidebartitle+'" rel="sidebar"><img src="images/bookmark_icon.jpg" width="16" height="16" alt="bookmark" /><br />Bookmark This Site</a>');
}
else if (navigator.appName=="Netscape") {
   document.write('<a href = "javascript:bookmarksite();"><img src="images/bookmark_icon.jpg" width="16" height="16" alt="bookmark" /><br />Bookmark This Site</a>');
}

