function SearchBoxMediator(search_box)
{
	this.NAME = "SearchBoxMediator";
	
	search_box.addEventListener(search_box.ON_SEND, onSendHandler );
	
	function onSendHandler(e){
		app_data_proxy.toURL("search",{search:e.target.value});
	}
	this.listNotificationInterests = function()
	{
		return Array(
					facade.STARTUP
					);
	}
	
	this.handleNotification = function(note)
	{
		switch(note.name)
		{
			case facade.STARTUP:
				search_box.start();
				break;
		}
	}
	
}

