function showDiv(objectID,state) {
var theElementStyle = document.getElementById(objectID);
if(state == 'block'){
theElementStyle.style.display = "none";
}else{
theElementStyle.style.display = "block";}
}