
<!-- JavaScript -->


function busy_now() {
         document['busyimage'].src = 'DIR/_pub/grafik/progress2.gif';
         return true;
}


function uploading_now() {
         document['progressimage'].src = 'DIR/pub/grafik/uploading.gif';
         return true;
}




function toggle(id,id_anti){
	    	var el = document.getElementById(id);
	    	var el_anti= document.getElementById(id_anti);
	    	if (el.style.display=='block'){
	    		el.style.display='none';
	    		el_anti.style.display='block';
	    	} else {
	    		el.style.display='block';
	    		el_anti.style.display='none';
	    	}
}

 
function CheckAll(){
 for(var x=0;x<document.form_list.elements.length;x++){
  var y=document.form_list.elements[x];
  if(y.name.indexOf('cb_') >=0) y.checked=document.form_list.ALLCB.checked;
 }
}


