// JavaScript Document
function showSub(insub) {
	var temp = document.getElementById(insub+"_sub");
	var temp0 = document.getElementById(insub);
	temp0.style.background = "#B1DEBD";
	temp0.style.color = "#000000";
	temp.style.display = 'block';
}

function hideSub(insub) {
	var temp = document.getElementById(insub+"_sub");
	var temp0 = document.getElementById(insub);
	temp0.style.background = "#008040";
	temp0.style.color = "#FFFFFF";
	temp.style.display = 'none';
}
