function showOthersOpinions(startDivId, endDivId) {
	for(i=startDivId; i<=endDivId; i++) {
		document.getElementById('opinion_'+i).style.display = 'inline';
	}
	document.getElementById('others_opinions').style.display = 'none';
	document.getElementById('others_opinions2').style.display = 'inline';
}

function showOthersOpinions2(startDivId, endDivId) {
	for(i=startDivId; i<=endDivId; i++) {
		document.getElementById('opinion_'+i).style.display = 'none';
	}
	document.getElementById('others_opinions').style.display = 'inline';
	document.getElementById('others_opinions2').style.display = 'none';
}

