// JavaScript Document
function mybookmark() {
	bookmarkurl=window.location.href;
	bookmarktitle=document.title;

	if (window.external) {
		window.external.AddFavorite(bookmarkurl,bookmarktitle)
	} else {
		msg = "This Feature is not available for Netscape Navigator Browser\n";
		msg = msg + " For adding this webpage to your favorites : 1. Click \"Bookmarks\" 2. \"Add Bookmark\"  or type \"Ctrl+D\".";
		alert(msg);
	}
}
