function AddArrToCompareList(section_id, str){
	if(str === undefined || !str.length) return;
	$.ajax({
		url:	'/dinamic/st_compare.php',
		data:	'action=putItems&'+str,
		type:	'post',
		success: function (msg) {
			window.location.href = '/store/compare/'+section_id;
		}
	});	
}
//Put Item into comparation list
function AddToCompareList(section_id, id, is_compare){
	try{
		$('#t_compare').hide();
		$('#t_compare2').hide();
	}catch (e) {}

	$.ajax({
		url:	'/dinamic/st_compare.php',
		data:	'action=putItem&section_id='+section_id+'&id='+id,
		type:	'post',
		success: function (msg) {
			if(msg == 'refresh'){
				history.go(0);
			}
		}
	});
}
