Ok, I know the script for IE but not netscape so I have just put in a message prompt for netscape use's untill you, is you

find a script for netscape.
insert this line where ever
| <a href="javascript:bookmarkit()">Bookmark this site</a> |
and this script can go anywhere you like
<script language="JavaScript">
<!--
function bookmarkit(){
if (navigator.appName == "Microsoft Internet Explorer"){
window.external.AddFavorite("http://yourURL","bookmarktitle")
}
else if (navigator.appName == "Netscape"){
alert("Don't forget to bookmark us!")}
}
-->
</script> |
replace "http://yourURL" with your site url and "bookmarktitle" to your site title.
