function initRadioLabelClickEvent() {
	var allFormSpan=$$("span.radio_label");
	var totFormSpan=allFormSpan.length;
	for (y = 0; y < totFormSpan; y++) {
		allFormSpan[y].onclick = function() {
			var theRadioButtonID=(this.id).replace("Lbl","");
			var theRadioButton=$(theRadioButtonID);				
			theRadioButton.checked=true;
		}
	}
}

function adjustHTMLEditorStyle() {
	var allHTMLEditors=$$("iframe");
	var totHTMLEditors=allHTMLEditors.length;
	for(var i=0;i<totHTMLEditors;i++) {
		if((allHTMLEditors[i].id).indexOf("html")>-1) {						
			allHTMLEditors[i].onfocus=function() {
				this.style.border="1px solid red";
			}
		}
	}
}

////* eventi onclick x label pulsanti radio *////
addLoadEvent(function() {
	initRadioLabelClickEvent();
	adjustHTMLEditorStyle();
});
/////////////////////////////////////////////////