function HL(element, on) 
{
	if (!on)
	{ 
		element.style.backgroundColor = '#ffcc99';
		element.style.color = 'black';
		element.style.borderColor = '#ffcc99';
	} else { 
		element.style.backgroundColor = '#FBEDBB';
		element.style.color = 'blue';
		element.style.borderColor  = 'purple';
	}
	return false;
}

