// JavaScript Document

function addBookmarkX(name){
if (document.all)
window.external.AddFavorite(window.location, name);
else if (window.sidebar)
window.sidebar.addPanel(name, window.location, "");
return false;
}
