I think you could use the PageRequestManager Events to regsiter some js after an updatepanel postback.
http://msdn.microsoft.com/en-us/library/bb398976.aspx
For example, you could put a timer on your updatepanel and add something similar to the following client side:
function endRequestHandler(sender, args) {
RegisterMyPlugin();
}
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(endRequestHandler);
Additionally, you can determine which panel/control caused the postback by inspecting the sender like this:
function endRequestHandler(sender, args) {
alert(sender._postBackSettings.panelID);
}