
Ext.onReady(function(){
            
                dialog = new Ext.BasicDialog("hello-dlg", { 
                        autoTabs:true,
                        width:960,
                        height:550,
                        shadow:true,
                        minWidth:300,
                        minHeight:250,
                        proxyDrag: true,
						collapsible: false,
                        closable: false,
						resizable:false,
						draggable:true

                });
                dialog.addKeyListener(27, dialog.hide, dialog);
    
           
            dialog.show();
        });

function showclever(dd)
{
var membername
membername=dd
ddcon.style.width=925;
ddcon.style.height=460;

document.frames["hiddenframeruser"].location.replace("/user_detail.php?userid="+ membername);

}


