// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header

// message to show in non-IE browsers
var txt = "<FONT FACE=VERDANA,ARIAL,HELVETICA SIZE=1 COLOR=#bb0000>Bookmark&nbsp;This&nbsp;Page</FONT>";

// url you wish to have bookmarked
var url = this.location;

// caption to appear with bookmark
var who = this.location;

// do not edit below this line
// ===========================


var ver = navigator.appName

if (navigator.appVersion.indexOf('Mac') != -1){ver = "Mac";}

var num = parseInt(navigator.appVersion)
if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) {
   document.write('<A HREF="javascript:window.external.AddFavorite(url,who);"');
   document.write('onMouseOver=" window.status=')
   document.write("txt; return true ")
   document.write('"onMouseOut=" window.status=')
   document.write("' '; return true ")
   document.write('">'+ txt + '</a>')
}else if (ver == "Mac") {
   document.write('<A HREF="javascript:alert(\'To bookmark this page, please use APPLE + D.\')');
   document.write('">'+ txt + '</a>');
}else{
   document.write('<A HREF="javascript:alert(\'To bookmark this page, please use CNTRL + D.\')');
   document.write('">'+ txt + '</a>');

} 

