			function startColori() {
				if (document.getElementsByTagName)
					var td = document.getElementsByTagName('TD');
				else if (document.all)
					var td = document.all.tags('TD');
					for (var i=0;i<td.length;i++) {
						td[i].onclick = onclic;
					}
			}
			function onclic() {
				scegli(this.id);
			}
			function scegli(colore) {
				if (document.forms[2].rad[1].checked==true) { document.forms[0].sfondo.value=colore; document.forms[2].rad[0].checked="checked"; }
				else {document.forms[0].testo.value=colore; document.forms[2].rad[1].checked="checked"; }
			}			

