////////////// local search ajax controller \\\\\\\\\\\\\\\\\

function HumanImgController( iUrl ) {
	AjaxController.call( this, iUrl );
	this.divId = "humanImg";
}

HumanImgController.prototype = new AjaxController();

HumanImgController.prototype.initView = function() {
	loading( 'humanImgInner', 'images/loading/loading4.gif', '100%', '300' );
};


function humanImg( url, pId ) {
	//alert( "humanImg search url is " + url + ", pId is " + pId );
	var controller = new HumanImgController( url );
	controller.doGet();
}

function select( uri ) {
	document.location="organicPicture.htm?" + uri;
	return true;
}

