// JavaScript Document

          function stripeTableRows(tableObject,startRow) {
			    var TABLE_ROW_COLOR_DEFAULT = "#e7e5dd";
          		var TABLE_ROW_COLOR_HILIGHT = "#FFFFe8";
               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 altrows() {
  				if (document.getElementById("myTab")!=null) {
					stripeTableRows(document.getElementById("myTab"),1);
					}
             else {
				 return false; 
			   }		
          }

