function openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// bgColorChange

function onColor(bgcolor) {
	bgcolor.style.backgroundColor='FFE9C4';
}
function offColor(bgcolor) {
	bgcolor.style.backgroundColor='F0B462';
}

function getShowBox(id) {
    document.getElementById('aikido').style.display = 'none';
    document.getElementById('jiu-jitsu').style.display = 'none';
    document.getElementById('kali').style.display = 'none';
    document.getElementById('teakwondo').style.display = 'none';
    document.getElementById('thai-box').style.display = 'none';

    document.getElementById(id).style.display = 'block';
}

