function showDiv(objectID) {
var theElementStyle = document.getElementById(objectID);

if(theElementStyle.style.display == "none")
{
theElementStyle.style.display = "block";
}
else
{
theElementStyle.style.display = "none";
}
}

function hideDiv(objectID) {
var theElementStyle = document.getElementById(objectID);
theElementStyle.style.display = "none";
}

function showNewDiv(objectID, link) {
var theElementStyle = document.getElementById(objectID);
theElementStyle.src = link;
}

