<!-- Hide from old browsers
function GetRndStyle()
{
// Change the Number variable to how many images/classes you want for your random generator. 
// Start from 0, so if you want 8, set the var Number below to 7.
var Number=9;
random.m=714025;  random.a=4096;   random.c=150889;
random.seed=(new Date()).getTime()%random.m;
// This is the first part of the image/classes style generator - a numerical recipe
function random(){
	random.seed = (random.seed*random.a + random.c) % random.m;
	return random.seed/ random.m;
}
var index = (Math.round((random()* Number)));
index = (Math.round((Math.random() * Number )));
var StrNumber='00'+index;
var iLen = StrNumber.length;
var StrID= String(StrNumber).substring(iLen, iLen - 2);
var rndTag = '<td class="Header BG'+StrID+'" colspan="3">';
return rndTag
}





// This is the table row script 

window.onload = colorRows;
	function colorRows() {
		   if(!(document.location.href.toLowerCase().indexOf('/admin/page_edit.asp')>0 || document.location.href.toLowerCase().indexOf('/admin/page_add.asp')>0))
		   {
		   var myTR = document.getElementsByTagName('tr');
		   for (var i=0;i<myTR.length;i++) {
				   if (i%2) {
						   myTR[i].className = 'rowTint';
				   }
			}
		   }
	}




-->