<?php
echo <<
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 2,
interval: 600,
width: 470,
height: 300,
theme: {
shell: {
background: '#ddc8a3',
color: '#000000'
},
tweets: {
background: '#ffffff',
color: '#000000',
links: '#336699'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
hashtags: false,
timestamp: true,
avatars: false,
behavior: 'all'
}
}).render().setUser('OSUPopCenter').start();
END;
?>