function bookmark(url, title) {
	if( document.all )
	{
		window.external.AddFavorite( url, title);
	} 
	else
	{
		alert('Your browser does not support this function.  Please add the bookmark manually.');
	}
}
