// JavaScript Document

function showBox(div) {

	divObj = document.getElementById(div);
	if (divObj != null)
	divObj.style.display = 'block';
}
function hideBox(div) {

	divObj = document.getElementById(div);
		if (divObj != null)
	divObj.style.display = 'none';
}
