//FUNZIONI PER EFFETTUARE I CONFRONTI


function Confronta(){
	
	var element = prendiElementoDaId('numchek');
	var get_string = '';
	var i;
	var j = 0;
	
	for (i = 0; i < element.value; i++) { 
	
		 if (prendiElementoDaId("c"+i).checked){ 
		 	
		 	val = prendiElementoDaId("c"+i).value;
		 	
		 	get_string += "cod"+i+"="+val+"&";
		 	
		 	j++;
		 }
	}
	if(j < 2){
		alert('Selezionare almeno 2 prodotti per il confronto!');
		return;
	}
	
	get_string += "numcod="+i;

	get_string = 'confronta.php?' + get_string;
	
	width = (j*200)+100;
	if(width>1024)
		width = 1024;
	else if(width < 500)
		width = 500;
	
	window.open(get_string, 'ConfrontaArticoli',"width="+width+",height=500,top=100,left=100,resizable=yes,scrollbars=yes,menubar=no");
}