Collapsible boxes

I am trying to have each of the three course boxes (see picture) open when clicked. I have succeeded in getting one, but I can’t seem to get the other two when using the same code (code below)

export function box5_click(event) {
if ($w(‘#box7’).collapsed) {
$w(‘#box7’).expand();
}
else
$w(‘#box7’).collapse();
}
export function box4_click(event) {
if ($w(‘#box2’).collapsed) {
$w(‘#box2’).expand();
}
else
$w(‘#box2’).collapse();
}