// JavaScript Document
function SekoCheckFunk(f,Massimo,maxlettere) { 
	if (f.value.length > maxlettere) {
		f.value = f.value.substring(0,maxlettere); 
	}
}

function SekoView(Obj,countdown){
	document.forms['primarie'].elements['counter'].value = (countdown - Obj.value.length);
}

