function toggle(ID)
{

    var rowLayer = document.getElementById('box_' + ID);
        
    newDisplay = rowLayer.style.display == 'none' ? 'inline' : 'none';
    rowLayer.style.display = newDisplay;
}

function info() {
	alert('Oldalunk ezen része kialakítás alatt áll.');
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

