var ie;
if(document.all)
	ie = true;
else
	ie = false;

function hilightTab(n, message)
{
	if (ie)
	{
		document.all['td' + n].style.backgroundColor='#000099';
		document.all['td' + n + '0'].style.backgroundColor='#000099';
		document.all['td' + n + '1'].style.backgroundColor='#000099';
		document.all['font' + n].color='#FFFFFF';
		document.all['font' + n].style.textDecoration='underline';
		window.status = '' + message;
	}
}
	
function unHilightTab(n, message)
{
	if (ie)
	{
		document.all['td' + n].style.backgroundColor='#999999';
		document.all['td' + n + '0'].style.backgroundColor='#999999';
		document.all['td' + n + '1'].style.backgroundColor='#999999';
		document.all['font' + n].color='#FFFFFF';
		document.all['font' + n].style.textDecoration='none';
		window.status = '' + message;
	}
}