﻿// JavaScript Document

nb=4;
function hydepartecipanti() {
	for (var i=1;i<(nb+1);i++) {
	document.getElementById("BoxDatiPart" + i).style.visibility = "hidden";
	document.getElementById("BoxDatiPart" + i).style.display = "none";
	document.getElementById("partecipanti" + i).className = "notactive";
	}
}

function showPartecipanti(match){
	hydepartecipanti();
	document.getElementById('BoxDatiPart'+match).style.visibility='visible';
	document.getElementById('BoxDatiPart'+match).style.display='block';
	document.getElementById('partecipanti'+match).className = 'active';
}



tb=5;
function switchTab() {
	for (var i=1;i<(tb+1);i++) {
	document.getElementById("table" + i).style.visibility = "hidden";
	document.getElementById("table" + i).style.display = "none";
	document.getElementById("buiToggle" + i).className = "notactive";
	}
}

function switchTable(match){
	switchTab();
	document.getElementById('table'+match).style.visibility='visible';
	document.getElementById('table'+match).style.display='block';
	document.getElementById('buiToggle'+match).className = 'active';
}