function BookMark(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "");
else
alert("Sorry, your browser doesn't support this feature." + 
"\nTry CTRL+D or select Bookmarks from menu." +
"\nWe recommend Internet Explorer 6+.");
}