﻿function selections () {
	var count = 0;
	$$('input').each( function( input ) {
		if ( input.checked ) count++;
	});
	
	if ( count==0 )	{ alert ('Attention, vous devez sélectionner votre réponse pour passer à la question suivante');return false;}
	else return true;
}

function valider(id) {
	document.getElementById(id).submit();
	//return false;
}

function more_visible(id) {
	if (document.getElementById(id))
	{
		if ($(id).className == 'no-hidden') $(id).className = 'hidden';
		else $(id).className = 'no-hidden';
	}
	return false;
}

function visibles (id) {
	if ( document.getElementById(id)) $(id).className = 'no-hidden';
}
