/*
 * Ext JS Library 2.2
 * Copyright(c) 2006-2008, Ext JS, LLC.
 * licensing@extjs.com
 * 
 * http://extjs.com/license
 */

    var win;
function ShowPanel(url){
	
        
            win = new Ext.Window({
                
                width       : 452,
                height      : 365,
                closeAction :'close',
				resizable :false,
				draggable  :false,
				modal: true, 
				bodyBorder: true,
				shadow:false,
				border: false,
				collapsed :false,
				collapsible :false,
				bodyStyle:'padding-top:170px;padding:0px;border:0px; background-color:#000000',
                plain       : false,
				autoLoad	:'show.php?id='+url,
				layout      : 'fit',
				animCollapse :false
            });

        win.show();
}