
// message to show in non-IE browsers
var txt = "<img src=/lib/sportsawards/add2favs.gif border=0 width=88 height=24>";
var txt2 = "Add us to your favorites";

// url you wish to have bookmarked
var url = "http://trophycentral.com";

// caption to appear with bookmark
var who = "Trophy Central"

// do not edit below this line
// ===========================

//  Hide script from older browsers
// script by http://www.hypergurl.com
 var urlAddress = "http://www.trophycentral.com";
 var pageName = "Trophy Central";

 function addToFavorites()
 {
  var urlAddress = location.href;
if (document.all)
window.external.AddFavorite(urlAddress, pageName);
else if (window.sidebar)
window.sidebar.addPanel(pageName, urlAddress, "")
}


   document.write('<A HREF="javascript:addToFavorites();" ');
   document.write('onMouseOver=" window.status=')
   document.write("txt2; return true ")
   document.write('"onMouseOut=" window.status=')
   document.write("' '; return true ")
   document.write('">'+ txt + '</a>')

