<!--
	function validateRadio(radioItem, radioName, radioDesc, returnFocus)
	{
		var i = 0;
		var returnValue = false;

		for(i; i < radioItem.length; i++)
		{
			if(radioItem[i].checked)
			{
				returnValue = true;
			}
		}

		if(!returnValue)
		{
			alert("Please select something for '" + radioDesc + "'.");
			if(returnFocus == true) flipImgRadio(radioName, imgErrSrc);	
		}

		return(returnValue);
	}
//-->