function randomId(aLen)
{
	lrand=Math.round(Math.random()*aLen);
	if (lrand>(aLen-1))
		lrand = aLen-1;
	return lrand;
}
