function DYKtext() 
    {
	var MyRnd = rand(2);

	if (MyRnd == 0)
		{
		return 'ACCENTiS Enterprise now includes a comprehensive Human Resources subsystem.';
		}
	else if (MyRnd == 1)
		{
		return 'ACCENTiS Enterprise includes a complete, industry leading payroll system. There is no need for an add-on product.';
		}
	else if (MyRnd == 2)
		{
		return 'ACCENTiS Enterprise demonstrations can be organised online with trained support staff at your disposal to show you around.';
		}
    }

function DYKTitle() 
    {
  return 'Did you know?';
    }


<!--
// Number Randomizer
rnd.today=new Date();
rnd.seed=rnd.today.getTime();

function rnd() {
        rnd.seed = (rnd.seed*9301+49297) % 233280;
         return rnd.seed/(233280.0);
};

function rand(number) {
        return Math.round(rnd()*number);
};
// end Number randomizer. -->
