function checkHeight(checkNote) { // Called by resizeNote.js, this is the list of related note names & heights; this list, rather than the others, is called from the parent document.
    noteHeightArray = new Array ()

    noteHeightArray["index"] = 325;
    noteHeightArray["calendar"] = 300;
    noteHeightArray["form"] = 400;
    noteHeightArray["archives"] = 300;
    noteHeightArray["june_2000"] = 350;
    noteHeightArray["july_2000"] = 350;
    noteHeightArray["august_2000"] = 400;
    noteHeightArray["september_2000"] = 400;
    noteHeightArray["october_2000"] = 350;
    noteHeightArray["november_2000"] = 350;
    noteHeightArray["december_2000"] = 350;
    noteHeightArray["january_2001"] = 350;
    noteHeightArray["february_2001"] = 350;
    noteHeightArray["march_2001"] = 300;
    noteHeightArray["april_2001"] = 300;
    noteHeightArray["may_2001"] = 300;

    var noteHeight = noteHeightArray[checkNote];
    return (noteHeight)
}

