function toggleDisplay(itemname)
{
	tmp = document.getElementsByTagName('div');
	for(i=0; i < tmp.length; i++) {
		if(tmp[i].className == itemname) {
			tmp[i].style.display = (tmp[i].style.display == 'none') ? 'block' : 'none';
		}
	}
}
function showOnly(doShow, dontShow)
{
	tmp = document.getElementsByTagName('div');
	for(i=0; i < tmp.length; i++) {
		if(tmp[i].className == doShow) {
			tmp[i].style.display = 'block';
		}
		if(tmp[i].className == dontShow) {
			tmp[i].style.display = 'none';
		}
	}
	showX();
}
function showNot(first, second)
{
	tmp = document.getElementsByTagName('div');
	for(i=0; i < tmp.length; i++) {
		if(tmp[i].className == first) {
			tmp[i].style.display = 'none';
		}
		if(tmp[i].className == second) {
			tmp[i].style.display = 'none';
		}
	}
	tmp = document.getElementsByTagName('h5');
	for(i=0; i < tmp.length; i++) {
		if(tmp[i].className == "theX")
		{
			tmp[i].style.display = 'none';
		}
	}
}
function showX()
{
	tmp = document.getElementsByTagName('h5');
	for(i=0; i < tmp.length; i++) {
		if(tmp[i].className == "theX")
		{
			tmp[i].style.display = 'inline';
		}
	}
}