/******************* alter.js ****************************************/
function f0(id){
   var cols;  // for alignment purpose
   if(document.getElementById){		//check that browser has capabilities
	var table = document.getElementById(id);		
if (table == null) return;
        //get just the selected table not all of them
	var rows = table.getElementsByTagName("tr");	
        //get all table rows
	for(i = 0; i < rows.length; i++){				
            //alternate styles			
	    //manipulate rows	
	    doAlternate(rows[i], i);
	    if (rows[i].sectionRowIndex ==0 && i>1){
		rows[i-1].className = rows[i].className;
		cols = rows[i].getElementsByTagName("td");
		if (cols.length >1){
		   cols[0].width = "55%";
		   cols[1].width = "25%";
		}
	    }
	}
    }
}

/********************************************************************/
function doAlternate(row, i){
	if(i % 2 == 0){
		row.className = "even";
	}else{
		row.className = "odd";
	}
}
/**************** end of alter.js **********************************/
