﻿<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Original:  nprakaz@rediffmail.com -->
<!-- Web Site:  http://www20.brinkster.com/mahathmaonline -->

<!-- Begin
function addBookmark(url,desc){
	var bookmarkurl      = url;
	var bookmarktitle    = desc;
	var nonie            = 'Sorry, only Mozilla Firefox and Internet Explorer support this method to add a bookmark/favourite\n But please feel free to visit the site\'s home page to add a bookmark manually';

	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(bookmarktitle, bookmarkurl,"");
	} else if(document.all){ // IE Favourites
		window.external.AddFavorite(bookmarkurl,bookmarktitle);
	} else {
		alert(nonie);
	}
}//  End -->

