function ShowHide(n){
	MyObj = document.getElementById('tr' + n)
	if (MyObj.style.display == ''){
		MyObj.style.display = 'none'
	}else{
		MyObj.style.display = ''
	}
}
function MouseOverColor(n){
	MyObj = document.getElementById('a' + n)
	MyObj.style.color = '#15B957'
}
function MouseOutColor(n){
	MyObj = document.getElementById('a' + n)
	MyObj.style.color = '#006633'
}