function expandBox(boxName) {
document.getElementById(boxName).style.height='auto';
}

function collapseBox(boxName) {
document.getElementById(boxName).style.height='400px';
}
