function setPointer(theRow, theMarkColor)
{
	if (theRow == '1')
	{
		m11.style.backgroundColor = theMarkColor;
		m12.style.backgroundColor = theMarkColor;
	}
	else if(theRow == '2')
	{
		m21.style.backgroundColor = theMarkColor;
		m22.style.backgroundColor = theMarkColor;
	}
	else if(theRow == '3')
	{
		m31.style.backgroundColor = theMarkColor;
		m32.style.backgroundColor = theMarkColor;
	}	
	else if(theRow == '4')
	{
		m41.style.backgroundColor = theMarkColor;
		m42.style.backgroundColor = theMarkColor;
	}	
	else if(theRow == '5')
	{
		m51.style.backgroundColor = theMarkColor;
	}	
	
    return true;
}