

function showMatch(_id){
   resetAllMatch();
    document.getElementById("box_"+_id).style.display = "block";
}

function resetMatch(_id){
	document.getElementById("box_"+_id).style.display = "none";
}


function resetAllMatch(){
	resetMatch("1");
	resetMatch("2");
}


