/* Function _fixElementHeight * ------------------------ * sets the height of an element on the page * @author : Jeff Clarke (cjeffrey4) * @param e : element name * @param h : height (integer) */ function _fixElementHeight(e, h){ document.getElementById(e).style.height = h+"px"; }