Using jQuery, you can just switch visibilty:
$('#<%= YourPanel.ClientID %>').hide();
$('#<%= YourPanel.ClientID %>').show();
Edit: jQuery is probably overkill just to hide/show, but if you plan to add more functionality client side, you should consider using it ;)