function focusInput(obj){
	obj.style.borderColor = 'black';	
}

function blurInput(obj){
	obj.style.borderColor = '#CCCCCC';
}

function changeDirectory(){
	window.location = "index.php?module=filebrowser&action=show&path="+loc.value;	
}

function removeFiles(){
	if(confirm("Weet je zeker dat je de geselecteerde files wil verwijderen")){
		document.forms['files'].action.value="del";
		files.submit();		
	}
}

function renameFiles(){
	document.forms['files'].action.value="rename";
	files.submit();	
}

function resizeFiles(){
	if(aantalCheckboxen > 1){
		alert("Niet meer dan 1 file tegelijk");
		return false;
	}
	document.forms['files'].action.value="resize";
	files.submit();	
}

aantalCheckboxen = 0;

function check(el){
	if(el.checked){
		aantalCheckboxen++;
	}
	else{
		aantalCheckboxen--;
	}
}