//favorites.js
// shows a special notation that tells user to add me to favorites

if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) 
	{
    var url="http://adviceofthequeen.com/";
    var title="Queen of Sheba, Personal Advisor";

    document.write('<A HREF="javascript:window.ext');
    document.write('ernal.AddFavorite(url,title);" ');
    document.write('onMouseOver=" window.status=');
    document.write("'Add to favorites!'; return true ");
    document.write('"onMouseOut=" window.status=');
    document.write("' '; return true ");
    document.write('">Add to favorites!</a>');
  }
else {
    var msg = "Add to favorites!";
    msg += " (CTRL-D)";
    document.write(msg);
}
