//{literal}
function google_image(word) {
	var searchControlDiv = document.getElementById("photos_here");
	var control = new GSearchControl();
	control.setResultSetSize(GSearch.LARGE_RESULTSET);
	control.setLinkTarget(GSearch.LINK_TARGET_PARENT);
	
	var options = new GsearcherOptions();
	options.setExpandMode(GSearchControl.EXPAND_MODE_OPEN);
	control.addSearcher(new GimageSearch(), options);
	control.draw(searchControlDiv);
	control.execute(word);
}
//GSearch.setOnLoadCallback(OnLoad);
//{/literal}
