// ##LOG: 
// -----------------------------------------------------------------------------------------------
//	26/06/03	bkel			Created.
// -----------------------------------------------------------------------------------------------
// ##TEMPLATE: 
// -----------------------------------------------------------------------------------------------
//	This file contains functions that will change the background color of a specified element.
// -----------------------------------------------------------------------------------------------

// Background Colors
var highlightColor = '#FAF5EB'
var normalColor = '#ffffff'


// Highlight Record Function
function ovrRecord(recordID)
{
	if(document.getElementById)
	{
		document.getElementById('record' + recordID).style.background = highlightColor;
	}
	else if(document.all)
	{
		eval('document.all.record' + recordID).style.background = highlightColor;
	}
}


// Remove Highlight Function
function outRecord(recordID)
{
	if(document.getElementById)
	{
		document.getElementById('record' + recordID).style.background = normalColor;
	}
	else if(document.all)
	{
		eval('document.all.record' + recordID).style.background = normalColor;
	}
}
