
function showDiv(theDiv)
{
	var theDiv;
	var divInsert = document.getElementById(theDiv);
	divInsert.style.display = 'block';
}
function hideDiv(theDiv)
{
	var theDiv
	var divInsert = document.getElementById(theDiv);
	divInsert.style.display = 'none';
}