function getCurrentRadioValue( obj )
{
	for( var i = 0; i < obj.length; i++ )
		if( obj[i].checked ) return obj[i].value;
}