function Grabbr(json)
{
    if (json.match('\{Error') == null)
    {
        pics = eval(json);
        count = 0;
        html = "";
        
        while (count < pics.length)
        {
            html = html + '<a href="' + pics[count].page + '">' +
                          '<img src="' + pics[count].img + '" border="0" ' +
                          'alt="' + pics[count].title + '" /></a><br/>';
            
            count = count + 1;
        }
        
        document.getElementById("flickrnetCatcher").innerHTML = html
    }
    
    else
    {
        document.getElementById("flickrnetCatcher").innerHTML = "Error!"
    }
}