// JavaScript Document
function showDesc(Tar) {
	document.getElementById(Tar+'_desc').style.display = 'inline';
}
function hideDesc(Tar) {
	document.getElementById(Tar+'_desc').style.display = 'none';
}