// JavaScript Document
function radioFocus(theRadioBtn) {
	document.getElementById(theRadioBtn).checked = true;
}

var radioColor = 
{
	init: function() {
		var inputs = document.getElementsByTagName("input");
		for(var x = 0; x < inputs.length; x++) {
			if(inputs[x].type == "radio" || inputs[x].type == "checkbox") {
				inputs[x].style.background = "none";
			}
		}
	}
}

var alertFunction = 
{
	init: function() {
		alertAfterPost();
	}
}

Core.start(radioColor);
Core.start(alertFunction);