function checkRadio(field) {
        var good = 0;
        for(count=0;count<field.length;count++) {
                if(field[count].checked)
                        var good = 1;
        }
        if(!good)       return false;
        else            return true;
}
