function showTwitterProfile() {
new TWTR.Widget({
  profile: true,
  id: 'twtr-profile-widget',
  loop: true,
  width: 190,
  height: 300,
  theme: {
    shell: {
      background: '#1E2425',
      color: '#ffffff'
    },
    tweets: {
      background: '#ffffff',
      color: '#141214',
      links: '#0d8494'
    }
  }
}).render().setProfile('MonetColbert').start();
}
window.onload=showTwitterProfile;
