Ext.onReady(function(){
    var gkvhotel = new Ext.TabPanel({
        renderTo: 'hilton-tabs',
        activeTab: 0,
        width:710,
        height:350,
        plain:false,
        closeOnTab: true,
        defaults:{autoScroll: true},
        items:[{
                title: 'Description',
                autoLoad:'/virginia-beach-hotels/Virginia-beach-hotel-descriptions.asp?h=Hilton'
            },{
                title: 'Location/Map',
                autoLoad:'/virginia-beach-hotels/Virginia-Beach-Maps.asp?h=Hilton'
            },{
                title: 'Pictures',
                autoLoad:'/virginia-beach-hotels/Virginia-Beach-Images.asp?h=Hilton'
            },{
                title: 'Video',
                autoLoad:'/virginia-beach-hotels/Virginia-Beach-Videos.asp?h=Hilton'
            },{
                title: 'Street View',
                autoLoad:'/virginia-beach-hotels/Virginia-Beach-Street-Views.asp?h=Hilton'
            }
        ]
    });
    
   

    function handleActivate(tab){
       
      popupWin = window.open('http://www.goldkeyvacations.com/', 'open_window', 'menubar, toolbar, location, directories, status, scrollbars, resizable, dependent, width=640, height=480, left=0, top=0');
       
    }
});