<!--
// copyright © 2006 web-stirs.com designs & Rick Greiner
// limited licensing to client sites - all rights reserved
// http://www.web-stirs.com/index4.html
// http://www.web-stirs.com/web-stirs_bookmark.htm
function bookmark(url, description)
{
netscape="Press this 'OK' button then press CTRL+D to add this location to your bookmarks"

if (navigator.appName=='Microsoft Internet Explorer')
{
window.external.AddFavorite(url, description);
}
else if (navigator.appName=='Netscape')
{
alert(netscape);
}
}
//-->
