var setHiddens = function (id, from, to) {
	for(var i=from;i<to+1;i++)
	{
		$('user'+i).value = ($(id).value==i.toString())?'1':'';
	}
}