function string(what,chars,counter) {

	var d=document;

	if (what.value.length > chars) {
		what.value=what.value.substr(0,chars);
		alert('Attenzione: Troppi caratteri [ >'+chars+'] inseriti nel campo commenti');
	}

	counting = (chars - what.value.length);
	c = document.getElementById(counter);
	c.innerHTML = counting;
}
//-->
