codice:
valori=""; 
for (nn=0;nn<objForm.length;nn++) { 
	el = objForm.elements[nn]; 
	if (el.type=="checkbox") { 
		if (el.checked){ 
			if (!valori) {
				valori=el.value; 
			} else { 
				valori+="," + el.value; 
			}
		} 
	} 
} 
alert(valori);
ciao