diff --git a/module/common/view/autosuggest.html.php b/module/common/view/autosuggest.html.php
deleted file mode 100644
index 6270f6a9d7..0000000000
--- a/module/common/view/autosuggest.html.php
+++ /dev/null
@@ -1,18 +0,0 @@
-getExtViewFile(__FILE__)){include $extView; return helper::cd();}?>
-
-
diff --git a/www/js/jquery/autosuggest/min.js b/www/js/jquery/autosuggest/min.js
deleted file mode 100644
index dd5a9c4046..0000000000
--- a/www/js/jquery/autosuggest/min.js
+++ /dev/null
@@ -1,40 +0,0 @@
- /*
- * AutoSuggest
- * Copyright 2009-2010 Drew Wilson
- * www.drewwilson.com
- * code.drewwilson.com/entry/autosuggest-jquery-plugin
- *
- * Version 1.2 - Updated: Jan. 05, 2010
- *
- * This Plug-In will auto-complete or auto-suggest completed search queries
- * for you as you type. You can add multiple selections and remove them on
- * the fly. It supports keybord navigation (UP + DOWN + RETURN), as well
- * as multiple AutoSuggest fields on the same page.
- *
- * Inspied by the Autocomplete plugin by: Jšrn Zaefferer
- * and the Facelist plugin by: Ian Tearle (iantearle.com)
- *
- * This AutoSuggest jQuery plug-in is dual licensed under the MIT and GPL licenses:
- * http://www.opensource.org/licenses/mit-license.php
- * http://www.gnu.org/licenses/gpl.html
- */
-(function($){$.fn.autoSuggest=function(data,options){var defaults={startText:"Enter Name Here",selectedItem:"value",searchObj:"value",queryParam:"q",retrieveLimit:false,extraParams:"",matchCase:false,minChars:1,keyDelay:400,start:function(){},selectionClick:function(elem){},formatList:false,retrieveComplete:function(data){return data;},resultsComplete:function(){}};var opts=$.extend(defaults,options);var d_type="object";var d_count=0;if(typeof data=="string"){d_type="string";var req_string=data;}else{var org_data=data;for(k in data)if(data.hasOwnProperty(k))d_count++;}
-if((d_type=="object"&&d_count>0)||d_type=="string"){return this.each(function(x){x=x+""+Math.floor(Math.random()*100);opts.start.call(this);var input=$(this);input.attr("autocomplete","off").addClass("as-input").attr("id","as-input-"+x).val(opts.startText);var input_focus=false;input.wrap('
');}
-results_ul.css("width",selections_holder.outerWidth());results_holder.show();opts.resultsComplete.call(this);}
-function moveSelection(direction){if($(":visible",results_holder).length>0){var lis=$("li",results_holder);if(direction=="down"){var start=lis.eq(0);}else{var start=lis.filter(":last");}var active=$("li.active:first",results_holder);if(active.length>0){if(direction=="down"){start=active.next();}else{start=active.prev();}}lis.removeClass("active");start.addClass("active");}}});}}})(jQuery);
\ No newline at end of file