﻿//Jscript
// Extension of Prototype
// Some functions were stored in logical places within prototype.js




// Form
// On click of an A we can check a radio
function activateRadio(id) {
    if ($(id)) {
        $(id).checked = 'checked';
    }
}