/*
 * Ext JS Library 2.0
 * Copyright(c) 2006-2007, Ext JS, LLC.
 * licensing@extjs.com
 * 
 * http://extjs.com/license
 */

Ext.onReady(function(){
    var p = new Ext.Panel({
        title: 'Media',
        collapsible:true,
        renderTo: document.getElementById("frypane"),
        width:200,
        html: Ext.example.bogusMarkup
    });
});