function checkDelete(url){
	
	if(confirm("Do you really want to delete this file?")){
	
		document.location = url;
	
	} else {
		
		return false;	
	
	}
		
}