<!--
          var TABLE_ROW_COLOR_DEFAULT = "#f1da59";
          var TABLE_ROW_COLOR_HILIGHT = "#f4e280";

          function stripeTableRows(tableObject,startRow) {
               
               var currentRowColor = "";

               for (var i = startRow; i < tableObject.rows.length; i++) {

                    currentRowColor = TABLE_ROW_COLOR_DEFAULT;

                    if (i % 2 == 0) {
                         currentRowColor = TABLE_ROW_COLOR_HILIGHT;
                    }
               
                    tableObject.rows[i].style.backgroundColor = currentRowColor;

               }

          }

          function configurePage() {
               stripeTableRows(document.getElementById("mainContentTable"),1);
          }

//-->   