<!-- hide script from non-script enabled browsers
function addBookmark( url, title )
{
  	// check if there is a title
	if (title == '')
	  	// set the title as url
		title = url;
	// check we can add to IE favorites
	if (document.all)
		window.external.AddFavorite(url,title);
	// check we can add to Mozilla bookmarks
	else if (window.sidebar)
		window.sidebar.addPanel(title, url, "");
	// else tell user how they can do it themselves
	else
		alert('Click OK then press CTRL and D to add a bookmark to:\n' + title);
}
 // end script hiding -->