﻿function Toggle(abstractID) {
     var CurrentAbstract = document.getElementById(abstractID);
     if (CurrentAbstract.style.display == 'none') {
         CurrentAbstract.style.display = 'block';
     }
     else {
         CurrentAbstract.style.display = 'none';
     }
 }

 $(document).ready(function() {
     $("table").each(function() {
         $(this).find("tbody tr:odd").addClass("odd");
         $(this).find("tbody tr:even").addClass("even");
     });
 });