// JavaScript Document
	MiniSearch = function(){ this.init(); }
	var p = MiniSearch.prototype;
	
	p.url = URL_ROOT;//FIND
	
	p.init = function(){ }
	
	p.search = function(e, v){
		if(e){ StopEvent(e); }
		oCookie.unset('key');
		oCookie.unset('blk');
		oCookie.unset('search');
		oCookie.set('mini', 1);
		if(v){ oCookie.set('key', v); }
		document.location.href = this.url;
	}
	
	p.seeProperties = function(v, e){
		if(e){ StopEvent(e); }
		oCookie.set('rs', v);
		this.search(e, false);
	}