function SetPointer(id, value)
{
	var p = document.getElementById('p' + id);

	if(value) p.style.backgroundImage = 'url(/img/p0active.gif)';
	else p.style.backgroundImage = 'url(/img/p0.gif)';
}
