function ToggleRepeaterRadioControls(oElem, strRepeaterName, strControlName)
{
	//This function will turn off all radio controls in the repeater control except the
	//	one that you are on
	for(counter=0;counter<=document.getElementById("tblRepeater").rows.length -1;counter++)
	{
		var radioBut=document.getElementById(strRepeaterName + "__ctl" + counter + "_" + strControlName)
		if (radioBut!=null) 
		{
			if (radioBut != oElem) 
			{
				radioBut.checked = false;
			}
		}
	}
}
