var k = 0;
var old_sel = '';
function selektiraj_kategoriju(id, id2, id3, id4, id5, id6, id7, id8) {
	if((id3 == 1) && (id4 == 0) && (id6 != '')){
		//alert(id6);
		var j = 0;
		for(var i = 1; i <= id6; i++){
			if(window.document.getElementById(id7+i).className != id2){
				window.document.getElementById(id7+i).className = id2;
				window.document.getElementById(id8+j).value = i;
			} else {
				//window.document.getElementById(id7+i).className = '';
				//window.document.getElementById(id8+j).value = '';
			}
			j++;
		}
	} else {
		if(window.document.getElementById(id).className != id2){
			window.document.getElementById(id).className = id2;
			window.document.getElementById(id5).value = id3;
		} else {
			window.document.getElementById(id).className = '';
			window.document.getElementById(id5).value = '';
		}
		if(id6 != ''){ // slucaj za sve zupanije, deselect glavne
			window.document.getElementById(id7+1).className = '';
			window.document.getElementById(id8+0).value = '';
		}
	}
	k++;
}

function upravljanje_kategorijama(id, id2, id3, id4, id5, id6) {
	var content = '';
	for(var i = 0; i <= id4; i++) {
		if(window.document.getElementById(''+id5+i+'')){
			if(window.document.getElementById(''+id5+i+'').value != ''){
				content += window.document.getElementById(''+id5+i+'').value + ', ';
			}
		}
	}
	makerequest(''+id2+'/ajax/upravljanje_kategorijama.php?id='+id3+'&akcija='+id+'&content='+content+'', ''+id6+'');
}
