<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>twittertips</title>
<script src="twitter anywhere url here" type="text/javascript"></script>
</head>
<body>
<span id="followme-button"></span>
<script type="text/javascript">
twttr.anywhere(function (T) {
//follow button
T('#followme-button').followButton("USERNAME");
T.bind("authComplete", function (e, user) {
// triggered when auth completed successfully
window.location = "downloadURL"
});
});
</script>
</body>
</html>