var showYear = new Date();
var showFullYear = showYear.getFullYear();

function hidePict()
{
	document.getElementById('showpict').style.visibility = "hidden";
}

function showPict(filename,category)
{
	document.images['visPict'].src = "images/gallery/" + category + "/" + filename;
	document.forms[0].pictTitle.value = filename;
	document.getElementById('showpict').style.visibility = "visible";
}

