?>
')">Facebook Logout</a>
                      </div>
                      <div style="clear:both"></div>
                      <a href="#" onclick="FB.Connect.showPermissionDialog('status_update', '','' ,'' );return false">Give Status Update Permission</a>
                      
                  </div>
              </td>
          </tr>
          <tr style="background-color: #c2cabb">
              <td>
                  <div id="twitinfo" style="display: block">
                      <?php 
if (isset($_SESSION['twit_oauth_access_token']) && isset($_SESSION['twit_oauth_access_token_secret'])) {
    echo '<b>Twitter Information</b><br />';
    $data = $fblinkedtwit->twitterGetLoggedinUserInfo($_SESSION['twit_oauth_access_token'], $_SESSION['twit_oauth_access_token_secret']);
    ?>
                            <table border="0" cellspacing="3" cellpadding="3">
                                <tr><td>Name</td>          <td><a target="_blank" href="http://twitter.com/<?php 
    echo $data->screen_name;
    ?>
"><?php 
    echo $data->name;
    ?>
</a></td></tr>
                                <tr><td>location</td>      <td><?php 
    echo $data->location;
    ?>
</td></tr>
                                <tr><td>description</td>   <td><?php 
    echo $data->description;