function addTwitterWidget(widgetid) {
    new TWTR.Widget({
      id: widgetid ? widgetid: 'twitter-widget', 
      version: 2,
      type: 'profile',
      rpp: 5,
      interval: 6000,
      width: 250,
      height: 300,
      theme: {
        shell: {
          background: '#000000',
          color: '#ffffff'
        },
        tweets: {
          background: '#1A3D5F',
          color: '#ffffff',
          links: '#A0CEFF'
        }
      },
      features: {
        scrollbar: false,
        loop: false,
        live: false,
        hashtags: true,
        timestamp: true,
        avatars: true,
        behavior: 'all'
      }
    }).render().setUser('BlueBuddhabtq').start();
}


