
// DOCUMENT REQUIRED PANEL SHOW HIDE

function show(obj) {
	document.getElementById(obj).style.display = 'block';
}
function hide(obj) {
	document.getElementById(obj).style.display = 'none';
}

// COUNTRY LIST SHOW HIDE

var lastDiv = "";
function showDiv(divName) {
	// hide last div
	if (lastDiv) {
		document.getElementById(lastDiv).className = "hide";
	}
	//if value of the box is not nothing and an object with that name exists, then change the class
	if (divName && document.getElementById(divName)) {
		document.getElementById(divName).className = "show";
		lastDiv = divName;
	}
}
