/*
	*************************************
	*   displays div and image blocks   *
	* copyright 2007 by G.Grisenthwaite *
	*************************************
*/

function displayThumb(id)  {
	var show = document.getElementById(id);
	show.style.display = 'block';
	document.getElementById('hereImage').style.display = 'none';
}

function hideThumb(id)  {
	var show = document.getElementById(id);
	show.style.display = "none";
	document.getElementById('hereImage').style.display = 'block';
}