// (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 = "<strong>Save This Page in Your Favorites</strong>"

// url you wish to have bookmarked
var url = "http://www.mytijuanaonline.com/english/index.html";

// caption to appear with bookmark
var who = "Tijuana Mexico Baja California Information"

// do not edit below this line
// ===========================

var ver = navigator.appName
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{
   txt += "<strong> Click On Control+D&nbsp;</strong>"
   document.write(txt)
}