// JavaScript Document
function addBookmark(title,url) {
    if (window.sidebar) {
        window.sidebar.addPanel(title, url,"");
    } else if( document.all ) {
        window.external.AddFavorite( url, title);
    } else if( window.opera && window.print ) {
        return true;
    }
}
    var thumb = null;
    function showThumbnail(which,e)
    {
        thumb = document.getElementById('thumb');
        if( thumb && thumb.style.visibility == 'hidden' )
        {
          thumb.style.left       = e.pageX ? pageXOffset + e.clientX + 20 + 'px' : document.body.scrollLeft + e.x + 20;
thumb.style.top        = e.pageY ? pageYOffset + e.clientY + 'px' : document.body.scrollTop  + e.y;
            thumb.style.visibility = 'visible';
            thumb.innerHTML        = '<img src="' + which + '">';
        }
    }
    function closeThumbnail()
    {
        if( thumb )
            thumb.style.visibility = 'hidden';
    }