function ShowPop(id, link)
{

    if($(id).visible())
    {
        $(id).hide();
        $(link).innerHTML = 'Learn more';
        $(link).title = 'Learn more';
    } else {
        $(id).show();
        $(link).innerHTML = 'Hide';
        $(link).title = 'Hide';
    }

}

function changeLogo(el,img)
{
    $(el).setStyle('background-image:url('+img+')');
}

function changeIcon(el,img,bg)
{
    if(bg) { $(el).setStyle('background-image:url('+img+')'); }
    else { $(el).src=img; }
}