function SetCells(tr, light)
{
	for (i = 0; i < tr.cells.length; i++)
	{
		if (light)
		{
			tr.cells[i].style.backgroundColor = '#F9F0C7';
		}
		else
		{
			tr.cells[i].style.backgroundColor = '';
			tr.cells[i].style.color = '';
		}
	}
}


function BreakFrames()
{
	// if called within FRAME then reload in full window (otherwise ambigous security breaks checkout)
	if (top != self)top.location.href = self.location.href;
}

BreakFrames();