// JavaScript Document called from body onload - arguments should be a list of tables to be striped by id 
var rowCol = "#D1ECF5" // specifies the row color.

function altColumnRows(){

for(i=0; i<arguments.length; i++)
	{
	objString = arguments[i]
	for(j=0; j<document.all[objString].rows.length; j++)
		{
		tableObj = document.all[objString]
		if(j%2){tableObj.rows[j].style.backgroundColor = rowCol}
		}
	}
}