/* Change Cell Color Rollover On Tier 2 Left Navigation */
function cellOver(tr) {
	if(document.getElementById||(document.all && !(document.getElementById))){
	tr.style.backgroundColor="#89A1AB";
	}
}

// remove decoration after leaving cell
function cellOut(tr) {
	if(document.getElementById||(document.all && !(document.getElementById))){
	tr.style.backgroundColor="#7C96A1";
	}
}


/* Change Cell Color Rollover On Tier 2 Left Navigation */
function cellOverI(tr) {
	if(document.getElementById||(document.all && !(document.getElementById))){
	tr.style.backgroundColor="#D1D7D9";
	}
}

// remove decoration after leaving cell
function cellOutI(tr) {
	if(document.getElementById||(document.all && !(document.getElementById))){
	tr.style.backgroundColor="#C1CBCE";
	}
}

/* Get Link of Cell */
var token = '';

function sendIt(loc)
{
	document.location=loc + token;
}