// JavaScript Document

<!--ALTERNATING COLOR TABLE - SEE INDEX PAGE-->

function alternatecolor(id){ 
 if(document.getElementsByTagName){  
   var table = document.getElementById(id);   
   var rows = table.getElementsByTagName("tr");   
   for(i = 0; i < rows.length; i++){           
     if(i % 2 == 0){ 
       rows[i].className = "color_one"; 
     }else{ 
       rows[i].className = "color_two"; 
     }       
   } 
 } 
}

function diploma() {
radiowin = window.open('diploma.html',"diploma",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=580,height=800');
radiowin.focus();
}
