/*
 * This 'add to bookmarks' function only works in IE.
 * I didn't test a function for Opera, and from what
 * I understand Firefox only allows scripts to add 
 * links to the sidebar, and not to the actual bookmarks.
 * wrap the href leading to this function in an IE
 * conditional include. 
 */

function addToBookmarks() {
	// IE only
	if (window.external) {
		var url = this.location;
		var title = document.title;
		window.external.AddFavorite(url,title);
	}
}

