(function bookmark(url, description)
{
netscape="Click OK and then hit CTRL+D to add a bookmark for this site to your Netscape browser."
if (navigator.appName=='Microsoft Internet Explorer')
{
window.external.AddFavorite(url, description);
}
else if (navigator.appName=='Netscape')
{
alert(netscape);
}
});
