function checkCompare() {
	var checkedItems = 0;
	var checkbox = document.body.getElementsByTagName('input');
	var checkStr = '';
	
	for (i=0; i<checkbox.length; i++) {
		if (checkbox[i].id.substr(0, 7) == 'compare' && checkbox[i].checked == true) {
			checkedItems++;
			checkStr += '&item[]=' + checkbox[i].id.substr(7);
		}
		
		if (checkedItems > 3) {
			alert('Sólo puede comparar hasta 3 productos para comparar.');
			return false;
		}
	}
	
	if (checkedItems < 2) {
		alert('Debe seleccionar al menos 2 productos para comparar.');
		return false;
	}
	
	window.location = "/comparar.php?" + checkStr.substring(1);
	return false;
}
