//flickrhandler.js
function jsonFlickrFeed(flickrJSON)
{
	var cA = '';
	for(var i =0; i < 5; i++)
		cA += '<a href="' + flickrJSON['items'][i]['link'] + '"><img src="' + flickrJSON['items'][i]['media']['m'] + '" /></a><br />';
	document.getElementById('flickrArea').innerHTML = cA;
}
/*
http://api.flickr.com/services/feeds/photos_public.gne?id=88766026%40N00&format=json
http://api.flickr.com/services/feeds/photos_public.gne
id (Optional)
A single user ID. This specifies a user to fetch for.
ids (Optional)
A comma delimited list of user IDs. This specifies a list of users to fetch for.
tags (Optional)
A comma delimited list of tags to filter the feed by.
tagmode (Optional)
Control whether items must have ALL the tags (tagmode=all), or ANY (tagmode=any) of the tags. Default is ALL.
format (Optional)
The format of the feed. See the feeds page for feed format information. Default is Atom 1.0.
lang (Optional)
The display language for the feed. See the feeds page for feed language information. Default is US English (en-us).
*/

