function tg(t) {
	var x = document.getElementById(t).style;
	if (x.display == 'none') 
		x.display = 'block';
	else 
		x.display = 'none';
}

function tn(t) {
	var x = document.getElementById(t).style;
	x.display = 'block';
}

function tf(t) {
	var x = document.getElementById(t).style;
	x.display = 'none';
}
