function showfull(img)
{
	// this function works by taking an image's thumbnail,
	// finding the full version, and swapping.
	
	// find full version:
	img = img.replace("thumbs","fullpics");
	img = img.replace("sm","lg");
		
	// swapping
	document.fullgraphic.src = img;
}

