function bookmark(url,title) {
	if (window.external) {
		window.external.AddFavorite(url,title);	
	}
	else {
		alert ('Please press CTRL-D to bookmark this page');
	}
}