function setHL(objSet, intOn)
{
	if (intOn == 1)
	{
		objSet.style.background = '#F3F3F3';
		objSet.style.cursor = 'pointer';
	}
	else
	{
		objSet.style.background = '#FFFFFF';
		objSet.style.cursor = 'normal';
	}
}

String.prototype.trim = function() 
{
	return( this.replace(/^\s*([\s\S]*\S+)\s*$|^\s*$/,'$1') ); 
}