﻿// to show and hide thumbnails.

function hideContent(d) 
{
	if (d == "all")
	{
	}
	else
	{
		if (d.length < 1) { return; }
		document.getElementById(d).style.display = "none";
	}
}

function showContent(d) 
{
	if (d.length < 1) { return; }
	document.getElementById(d).style.display = "";
}

function reverseContentDisplay(d) 
{
	if (d.length < 1) { return; }
	if (document.getElementById(d).style.display == "none") 
		{ document.getElementById(d).style.display = ""; }
	else 
		{ document.getElementById(d).style.display = "none"; }
}

