function boxon(nGmark) {
	document.getElementById('li1'+nGmark).style.backgroundImage = 'url(/award/resource/img/ib_bg2.jpg)';
	document.getElementById('li2'+nGmark).style.backgroundImage = 'url(/award/resource/img/ib_bottom2.jpg )';
	document.getElementById('li3'+nGmark).style.backgroundImage = 'url(/award/resource/img/ib_top2.jpg )';
	document.getElementById('li4'+nGmark).style.color = '#DD0000';
	document.getElementById('li5'+nGmark).style.color = '#DD0000';

}

function boxoff(nGmark) {
	document.getElementById('li1'+nGmark).style.backgroundImage = 'url(/award/resource/img/ib_bg.jpg )';
	document.getElementById('li2'+nGmark).style.backgroundImage = 'url(/award/resource/img/ib_bottom.jpg)';
	document.getElementById('li3'+nGmark).style.backgroundImage = 'url(/award/resource/img/ib_top.jpg)';
	document.getElementById('li4'+nGmark).style.color = '#333333';
	document.getElementById('li5'+nGmark).style.color = '#333333';
}

function switch_cond() {
	cond = document.getElementById("plus_cond");
	button = document.getElementById("switch_cond_button");
	
	if (cond.style.display == "none") {
		cond.style.display = "block";
		cond.style.disabled = true;
		button.className = "close";
	}
	else {
		cond.style.display = "none";
		cond.style.disabled = false;
		button.className = "open";
	}
}
