
 //display or hide container

 function fnVisible(objContainer) {
	var obj = document.getElementById(objContainer);
	obj.style.display = "block";
	
}


function fnClose(objContainer2) {
	var obj2 = document.getElementById(objContainer2);
		obj2.style.display = "none";
}

function setVisible(objContainer,status) {
	var obj = document.getElementById(objContainer);
	obj.style.display = status;
}



// -->
