/**
 * How to use.
 * (Look below for an example)
 * http://www.gtaero.net/twitter/    
 * [optional]    [DEFAULT]    navarr        ?user    =USERNAME        STR
 * [optional]    [DEFAULT]    10        &count    =NUMBER_TO_SHOW        INT 0-20
 * [optional]    [DEFAULT]    true        &time    =DISPLAY_TIME        BOOL[true,false]    Display the Time of the Tweet
 * [optional]    [DEFAULT]    true        &client    =DISPLAY_CLIENT        BOOL[true,false]    Display the Client the tweet was posted from
 * [optional]    [DEFAULT]    true        &br    =BREAK_TWEET_TIME    BOOL[true,false]    Break the Tweet and the Time in HTML (<br />)
 * [optional]    [DEFAULT]    false        &turl    =USE_TURLED        BOOL[true,false]    Use Turled profile links instead of twitter
 *
 *
 * How to embed:
 * Put in <head>: <script type="text/javascript" src="http://www.gtaero.net/twitter/?VARIABLES" />
 * Put in <body>: <div id="twitterz"></div><script type="text/javascript">twitter2id("twitterz");</script>
 *
 * Example of URL with variables: http://gtaero.net/twitter/?user=navarr&count=5
 *
 * PHP Source Code: http://www.gtaero.net/twitter/index.php?source
 *
 * About & License: http://tech.gtaero.net/code/simple-twitter
 */
function twitter2id(id)
{
    // Used Old File
    var twitterEle = document.getElementById(id);
    twitterEle.innerHTML = "<ul>";
    twitterEle.innerHTML = twitterEle.innerHTML + "</ul>";
}