Ext.onReady(function(){

Ext.QuickTips.init();

regwin = function()

{

     var        win = new Ext.Window({

                layout:'fit',

                title: 'Room Exchange Network Registration',

                width:800,

                height:530,

                draggable:true,

                closeAction:'hide',

                plain: true,

                html: '<div style="text-align:left">'

                     +' <img src="images/logo1.jpg"><br>'

                     +' <iframe style="width:795px; height:490px;background:transparent;" frameborder="0" scrolling="auto" name="subc" src="./tpl/registration.php"></iframe>'

                     +' <br>&nbsp;'

                     +'</form></div>'                

            });



        win.show();

};

});