function do_popup(src) {
	var data = {'src': src};
	
	var popup = new Ext.Window({
		width: 294,
		bodyStyle: "padding: 5px;",
		renderTo: document.body
	});
	
	var template = new Ext.XTemplate(
		'<img id="photo" src="{src}" />'
	);
	
	template.overwrite(popup.body, data);
	
	popup.show();
	
	return false;
}