// JavaScript Document
//Enlarge image thumbmails on mouseover

function showImg(id)
{
	document.getElementById(id).style.visibility = "visible";
}

function hideImg(id)
{
	document.getElementById(id).style.visibility = "hidden";
}

function showObj(id)
{
	document.getElementById(id).style.display = "block";
}
function hideObj(id)
{
	document.getElementById(id).style.display = "none";
}