<!--
var IEstring = "<a class='white' href='javascript:window.external.addFavorite"
IEstring += "(location.href,document.title);' title='Add to Favorites'>Bookmark Us<\/a> &nbsp;" ;
var NSstring = "Bookmark Us - Press [Ctrl + D] ";
var OPstring = "Bookmark Us - Press [Ctrl + T]";
var OTHstring = "bookmark this page!"
var whichString = OTHstring ;
var agt = navigator.userAgent.toLowerCase();
var app = navigator.appName.toLowerCase();
var ieAgent = agt.indexOf('msie');
var nsAgent = app.indexOf('netscape');
var opAgent = app.indexOf('opera');
if (ieAgent!= -1) { whichString = IEstring; } else if (nsAgent!= -1){ whichString = NSstring; } else if (opAgent!= -1){whichString = OPstring; }
document.write(whichString)
-->