// JavaScript Document

function colorItem (a) {
document.getElementById(a).style.color='#bf2e1a';
}


function ShowBox (a) {
	document.getElementById(a).style.visibility = 'visible';
}

function HideBox (a) {
	document.getElementById(a).style.visibility = 'hidden';
}
