window.onload=function() {
anc=document.getElementsByTagName('area');
for(c=0;c<anc.length;c++) {
if(anc[c].className=='bookmark') {
anc[c].onclick=function() {
if(document.all) {
window.external.AddFavorite(this.href,this.title);
}
else {
if(window.sidebar) {
window.sidebar.addPanel(this.title,this.href,'');

}
}
}
}
}
}
