function showGalSearchBox(query) {
	$('#strPhotoContent').remove();
	$('body').append('<div id="strPhotoContent" title="'+l_search+'"></div>');
	$('#strPhotoContent').html('<div id="str_photolist"><img border="0" src="images/progress_bar.gif" alt="Loading..." /><br /><br />'+l_loading_progress+'</div>');
	$.post('index.php?mod=ajax',{'act':'search_photo','q':query},function(xml) {
		$('#str_photolist').html($("datatable",xml).text());
	});
	$('#strPhotoContent').dialog({
		modal: true,
		width: 640,
		position: ['center',100]
	});
}