var clic=true;
var postcom=false;
var postmsg=false;
var item=new Object();

function encart_hide(bloc,id,slide,get,form){
	if(clic==true){
		clic=false;
		if(slide=='Left'){
			$('#bloc-'+bloc).SlideOutRight('fast',function(){
				ajax_bloc(id,get+'&slide=Left',form);
			});
		}else if(slide=='Right'){
			$('#bloc-'+bloc).SlideOutLeft('fast',function(){
				ajax_bloc(id,get+'&slide=Right',form);
			});
		}
	}
}

function toutcocher(nombre){
	for(i=1;i<=nombre;i++){
		if(document.getElementById('del'+i).checked==false){
			coche(document.getElementById('del'+i).value);
			document.getElementById('del'+i).checked=true;
		}
	}
}

function coche(id){
	var ids='';
	var flag=0;
	if(item[id]!=null){
		delete(item[id]);
	}else{
		item[id]=id;
	}
	for(keyVar in item){
		if(flag>0){
			ids+=',';
		}
		ids+=item[keyVar];
		flag++;
	}
	document.getElementById('ids').value=ids;
}
