﻿function Thumb(obj)
{
    if(obj.width > obj.height)
    {
        if(obj.width > 97)
        {
            obj.width = 97;
        }
    }
    else
    {
        if(obj.height > 124)
        {
            obj.height = 124;
        }
    }
}

function addFavor(title, url){
    if (document.all)
        window.external.AddFavorite(url, title);
    else if (window.sidebar)
        window.sidebar.addPanel(title, url, "")
}