Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>O </title>
- <link rel="stylesheet" href="css/css.css" type="text/css">
- <link rel="ICON" href="images/icon.ico" type="image/ico">
- <link rel="SHORTCUT ICON" href="images/icon.ico">
- <meta name="Robots" content="INDEX,FOLLOW">
- <meta name="GOOGLEBOT" content="INDEX, FOLLOW">
- <meta name="language" content="en">
- <link rel="alternate" type="application/rss+xml" title="Andrograde's RSS" href="rss.php">
- <script type="text/javascript" src="js/jquery.js"></script>
- <script type="text/javascript" src="js/client.js"></script>
- <script type="text/javascript" src="js/jquery.corner.min.js"></script>
- <script type="text/javascript">
- $j(document).bind("login", function (event, name) {
- window.location.reload();
- });
- function apply_site_colors(profile_bg,profile_panel,profile_text,profile_title) {
- $j('.jquery-corner').remove();
- $j('body').css({'background-color': '#'+profile_bg, 'color': '#'+profile_text});
- $j('.item_content,.item_rounded').css({'background-color': '#'+profile_panel});
- $j('input,label,textarea').css({'color': '#'+profile_text});
- $j('li.banma').css({'background-color': '#'+profile_panel});
- $j('h1,h2,h3,h4,h5').css({'color': '#'+profile_title});
- //$j(".item_rounded").corner();
- }
- $j(function(){
- //$j(".item_rounded_outer").corner("round 20px");
- //$j(".item_rounded_inner").corner("round 10px");
- });
- </script>
- <script type="text/javascript">
- var fetching_na= false;
- function fetchChatNumUsers(){
- if (fetching_na==true) return;
- fetching_na= true;
- $j.ajax({type: "GET",
- url: "feeds/chatfeed.php?numusers",
- dataType: "xml",
- error: function() { fetching_na= false; },
- success: function(response) {
- $j('#community').html('A ' + response.documentElement.getAttribute('numaccounts') + ' player community');
- $j('#numchatting').html("<a href='#' onclick='popup(\"chat.php\", \"Chat\", 450, 690); return false;'>"+response.documentElement.getAttribute('numusers')+"</a>");
- fetching_na= false;
- }
- });
- }
- $j(document).ready(function () {
- setInterval("fetchChatNumUsers()",2000);
- });
- </script>
- <script type="text/javascript" src="http://cdn.gigya.com/JS/gigya.js?services=socialize"></script>
- <script type="text/javascript">
- var conf= {
- "APIKey":"2_I7xPLoMh505WdxkNjC5KtQ==",
- "enabledProviders":"facebook,myspace,twitter,google,yahoo,aol"
- }
- // Update the user's status
- function setStatus(message) {
- var params = {
- status: message,
- callback: setStatus_callback,
- useFacebookConnect: true
- };
- gigya.services.socialize.setStatus(conf, params);
- }
- function setStatus_callback(result) {
- //alert(result);
- }
- function socializeLogin(event) {
- $j.ajax({url: "https://andrograde.com/authenticate.php",
- dataType: "text",
- type: "POST",
- data: {action: 'link', socialize: event.user.UID},
- error: function() {
- alert("Login failed");
- },
- success: function(response) {
- if (response=='OK') {
- $j(document).trigger("login", [$j('#login').val()]);
- } else {
- alert('Login failed\r\n' + response);
- }
- }
- });
- }
- var gigyauser;
- var connect_params=
- {
- height: '50',
- width: '110',
- containerID: 'componentDiv',
- UIConfig: '<config><body><texts><links color="#000000"></links></texts><controls><snbuttons buttonsize="20"></snbuttons></controls><background background-color="Transparent" frame-color="Transparent"></background></body></config>',
- useFacebookConnect: 'true',
- onConnect: socializeLogin,
- onDisconnect: logout
- };
- function loggedin(res) {
- gigyauser= res.user;
- if ($j('#profile').length==0) return; // no menu on this page
- if (res.user!=null && res.user.isConnected) {
- $j('#picture').attr('src', res.user.thumbnailURL);
- $j('#profile').show();
- if ($j('#login_text').css('display')!='none')
- socializeLogin(res);
- } else {
- // show login stuff
- }
- gigya.services.socialize.showConnectUI(conf,connect_params);
- }
- var logout_url= '/chat.php?logout';
- function logoutRedirect(response) {
- if (response['status'] == 'OK') {
- window.location= logout_url;
- } else {
- }
- }
- function logout() {
- if (gigyauser!=null && gigyauser.isLoggedIn)
- gigya.services.socialize.logout(conf,{callback:logoutRedirect});
- else
- window.location= logout_url;
- }
- $j(document).ready(function () {
- gigya.services.socialize.getUserInfo(conf,{callback:loggedin});
- });
- </script>
- <script type="text/javascript">
- window.google_analytics_uacct = "UA-2412435-3";
- </script>
- <script type="text/javascript" src="js/swfobject.js"></script>
- <script type="text/javascript" src="js/chat.js"></script>
- <script type="text/javascript">
- function getDocHeight() {
- var D = document;
- return Math.max(
- Math.max(D.body.scrollHeight, D.documentElement.scrollHeight),
- Math.max(D.body.offsetHeight, D.documentElement.offsetHeight),
- Math.max(D.body.clientHeight, D.documentElement.clientHeight)
- );
- }
- /*function clicked() {
- $j.ajax({type: "POST",
- url: "chat.php",
- dataType: "xml",
- data: { log:'true' },
- error: function() { },
- success: function(response) { }
- });
- //alert('hi!');
- }
- $j(document).ready(function () {
- setTimeout("$j('iframe > *').click(clicked);", 1000);
- document.getElementById("message").focus();
- window.onfocus= function() { document.getElementById("message").focus(); };
- //$j('#ads').attr('onclick', clicked);
- });*/
- $j(document).ready(function () {
- $j('#chat').css('height', ($j(window).height()-240)+'px');
- $j('#message').focus();
- });
- $j(window).resize(function() {
- $j('#chat').css('height', ($j(window).height()-240)+'px');
- });
- </script>
- <style media="screen" type="text/css">#ChatWidget {visibility:hidden}</style>
- </head>
- <body style="width:100%">
- <object type="application/x-shockwave-flash" id="ChatWidget" allowscriptaccess="always" data="ChatWidget.swf" width="1" height="1" style="visibility: visible"></object>
- <div id="content_wrap" style="padding-bottom:0px">
- <script type="text/javascript">
- standalone= true;
- init_chat(); </script>
- <!--<center>
- <a href="http://andrograde.com" target="_blank"><img src="images/logo2.png" style="width:310px;height:85px;"></a>
- </center> -->
- <!--<table><tr><td width="100%" valign="top">-->
- <div class="item_rounded_outer">
- <div class="item_content_outer">
- <!-- <h3 class="top" style="margin-left:10px;color:#ffcc00" id='chat_users_head'>Chat</h3> -->
- <div class="item_rounded_inner" style="margin-bottom:16px">
- <div class="item_content_inner">
- <div id="chat_users" style="height: 100px; overflow:auto; overflow-x:hidden;">
- <table cellspacing="0" cellpadding="0" class="chat_users">
- <tbody>
- <tr style="height:17px;">
- <td></td>
- <td>
- <img width="16" height="16" onmouseover="thumbover('Different55');" src="authenticate.php?action=getimage&user=Different55.0">
- <div id="thumbDifferent55" style="display:none;position:absolute;top:0;left:0;z-index:100;">
- <img src="authenticate.php?action=getimage&user=Different55.0">
- </div>
- </td>
- <td style="background-color:#ffffff">
- <a style="-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;opacity: 0.4;filter: alpha(opacity=40);color:orange;" href="profile.php?view=Different55.0" target="_blank" title="Click to see Different55's profile">Different55</a>
- </td>
- <td style="width:44px;background-color:#ffffff">
- <font style="color:#00ff00;;float:left">485</font>
- <font style="color:GoldenRod;float:right">30849</font>
- </td>
- <td style="background-color:#ffffff">
- <i style="color:GoldenRod">Just Chatting</i>
- </td>
- <td></td>
- </tr>
- <tr style="height:17px;">
- <td></td>
- <td>
- <img width="16" height="16" onmouseover="thumbover('soin');" src="authenticate.php?action=getimage&user=soin.0">
- <div id="thumbsoin" style="display:none;position:absolute;top:0;left:0;z-index:100;">
- <img src="authenticate.php?action=getimage&user=soin.0">
- </div>
- </td>
- <td style="background-color:#ffffff">
- <a style="-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;" href="profile.php?view=soin.0" target="_blank" title="Click to see soin's profile">soin</a>
- </td>
- <td style="width:44px;background-color:#ffffff">
- <font style="color:#00ff00;;float:left">161</font>
- <font style="color:GoldenRod;float:right">6233</font>
- </td>
- <td style="background-color:#ffffff">
- <i style="color:GoldenRod">Just Chatting</i>
- </td>
- <td></td>
- </tr>
- <tr style="height:17px;">
- <td></td>
- <td>
- <img width="16" height="16" onmouseover="thumbover('Guest995');" src="authenticate.php?action=getimage&user=Guest995">
- <div id="thumbGuest995" style="display:none;position:absolute;top:0;left:0;z-index:100;">
- <img src="authenticate.php?action=getimage&user=Guest995">
- </div>
- </td>
- <td style="background-color:#ffffff">
- <a style="-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;" href="profile.php?view=Guest995" target="_blank" title="Click to see Guest995's profile">Guest995</a>
- </td>
- <td style="width:44px;background-color:#ffffff">
- <font style="color:#ffffff;text-shadow:1px 1px 0px #000;;float:left">200</font>
- <font style="color:GoldenRod;float:right">0</font>
- </td>
- <td style="background-color:#ffffff">
- <i style="color:GoldenRod">Just Chatting</i>
- </td>
- <td></td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- <div class="item_rounded_inner">
- <div class="item_content_inner">
- <div id="chat" style="overflow-y: auto; overflow-x: hidden; height: 138px">
- <div class="chat_list">
- <font style="background-color:undefined;">
- <b>
- <a style="color:undefined;" href="profile.php?view=silver_sapphires.0" target="_blank">silver_sapphire</a>
- </b>
- <font style="color:#000000">
- <big>Different55 smells like cheese </big>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:undefined;">
- <b>
- <a style="color:undefined;" href="profile.php?view=silver_sapphires.0" target="_blank">silver_sapphire</a>
- </b>
- <font style="color:#000000">
- <big>Different55 smells like cheese </big>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="font-size:80%"> (silver_sapphires) has been banned for 5 minutes for spamming by Andrograde</font>
- </div>
- <div class="chat_list">
- <font style="font-size:80%">
- <big> (silver_sapphires) has been banned for 5 minutes for spamming by Andrograde </big>
- </font>
- </div>
- <div class="chat_list">
- <font style="font-size:80%">silver_sapphire has been unbanned by Different55</font>
- </div>
- <div class="chat_list">
- <font style="font-size:80%">silver_sapphires has been unbanned by Different55</font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;opacity: 0.4;filter: alpha(opacity=40);color:orange;" href="profile.php?view=Different55.0" target="_blank">Different55</a>
- </b>
- <font style="color:#000000">
- <font style="opacity: 0.4;filter: alpha(opacity=40);">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>This is test one on forcing someone to say something </big>
- </font>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;opacity: 0.4;filter: alpha(opacity=40);color:orange;" href="profile.php?view=Different55.0" target="_blank">Different55</a>
- </b>
- <font style="color:#000000">
- <font style="opacity: 0.4;filter: alpha(opacity=40);">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>and I guess one test is all it needs </big>
- </font>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;opacity: 0.4;filter: alpha(opacity=40);color:orange;" href="profile.php?view=Different55.0" target="_blank">Different55</a>
- </b>
- <font style="color:#000000">
- <font style="opacity: 0.4;filter: alpha(opacity=40);">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>sup guest </big>
- </font>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;" href="profile.php?view=Bawss.0" target="_blank">Bawss</a>
- </b>
- <font style="color:#000000"> Yo different</font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;" href="profile.php?view=Bawss.0" target="_blank">Bawss</a>
- </b>
- <font style="color:#000000"> !</font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;" href="profile.php?view=Bawss.0" target="_blank">Bawss</a>
- </b>
- <font style="color:#000000"> youza Beethchh</font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;opacity: 0.4;filter: alpha(opacity=40);color:orange;" href="profile.php?view=Different55.0" target="_blank">Different55</a>
- </b>
- <font style="color:#000000">
- <font style="opacity: 0.4;filter: alpha(opacity=40);">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>thanks </big>
- </font>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;" href="profile.php?view=Bawss.0" target="_blank">Bawss</a>
- </b>
- <font style="color:#000000"> Yeh yeh your a mod</font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;" href="profile.php?view=Bawss.0" target="_blank">Bawss</a>
- </b>
- <font style="color:#000000"> so what i dont give a fuck!</font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;" href="profile.php?view=Bawss.0" target="_blank">Bawss</a>
- </b>
- <font style="color:#000000"> bitch!</font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;" href="profile.php?view=Bawss.0" target="_blank">Bawss</a>
- </b>
- <font style="color:#000000"> suck my baLLS</font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;" href="profile.php?view=Bawss.0" target="_blank">Bawss</a>
- </b>
- <font style="color:#000000">
- you piece of
- <img src="images/emo/poop.png">
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;opacity: 0.4;filter: alpha(opacity=40);color:orange;" href="profile.php?view=Different55.0" target="_blank">Different55</a>
- </b>
- <font style="color:#000000">
- <font style="opacity: 0.4;filter: alpha(opacity=40);">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>I suck hairy balls </big>
- </font>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;" href="profile.php?view=Bawss.0" target="_blank">Bawss</a>
- </b>
- <font style="color:#000000"> I suck hairy balls</font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;opacity: 0.4;filter: alpha(opacity=40);color:orange;" href="profile.php?view=Different55.0" target="_blank">Different55</a>
- </b>
- <font style="color:#000000">
- <font style="opacity: 0.4;filter: alpha(opacity=40);">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>darn </big>
- </font>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;opacity: 0.4;filter: alpha(opacity=40);color:orange;" href="profile.php?view=Different55.0" target="_blank">Different55</a>
- </b>
- <font style="color:#000000">
- <font style="opacity: 0.4;filter: alpha(opacity=40);">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>we both said it </big>
- </font>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;opacity: 0.4;filter: alpha(opacity=40);color:orange;" href="profile.php?view=Different55.0" target="_blank">Different55</a>
- </b>
- <font style="color:#000000">
- <font style="opacity: 0.4;filter: alpha(opacity=40);">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>I'll have to work on that </big>
- </font>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;" href="profile.php?view=Bawss.0" target="_blank">Bawss</a>
- </b>
- <font style="color:#000000"> stfu! you lil pussy ass bitch</font>
- </font>
- </div>
- <div class="chat_list">
- <font style="font-size:80%">Bawss (174.138.206.64) has been banned for 0 minutes by Different55 for Bye</font>
- </div>
- <div class="chat_list">
- <font style="font-size:80%">Different55 has joined room lobby</font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;" href="profile.php?view=soin.0" target="_blank">soin</a>
- </b>
- <font style="color:#000000">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>Good job diff </big>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <b style="color:#0096FC">Guest995</b>
- : Different55 smells like cheese
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;opacity: 0.4;filter: alpha(opacity=40);color:orange;" href="profile.php?view=Different55.0" target="_blank">Different55</a>
- </b>
- <font style="color:#000000">
- <font style="opacity: 0.4;filter: alpha(opacity=40);">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>Ha! </big>
- </font>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="font-size:80%">
- soin double crossed Guest995!
- <font color="#ff0000">
- soin hit Guest995 with golden gem encrusted
- <img src="images/emo/poop.png">
- for
- <b>3,297</b>
- </font>
- <font color="#ff0000">
- <b>
- soin
- <em>vaporized</em>
- Guest995!
- </b>
- </font>
- <br>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;opacity: 0.4;filter: alpha(opacity=40);color:orange;" href="profile.php?view=Different55.0" target="_blank">Different55</a>
- </b>
- <font style="color:#000000">
- <font style="opacity: 0.4;filter: alpha(opacity=40);">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>hey man </big>
- </font>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;opacity: 0.4;filter: alpha(opacity=40);color:orange;" href="profile.php?view=Different55.0" target="_blank">Different55</a>
- </b>
- <font style="color:#000000">
- <font style="opacity: 0.4;filter: alpha(opacity=40);">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>don't kill the guest </big>
- </font>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;opacity: 0.4;filter: alpha(opacity=40);color:orange;" href="profile.php?view=Different55.0" target="_blank">Different55</a>
- </b>
- <font style="color:#000000">
- <font style="opacity: 0.4;filter: alpha(opacity=40);">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>he was framed </big>
- </font>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;" href="profile.php?view=soin.0" target="_blank">soin</a>
- </b>
- <font style="color:#000000">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>So </big>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="font-size:80%">
- <font color="#00ff00">
- Different55
- <b>super</b>
- healed Guest995 by 3397!
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="font-size:80%">Guest995 is already as healthy as possible </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;" href="profile.php?view=soin.0" target="_blank">soin</a>
- </b>
- <font style="color:#000000">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>-.- </big>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;opacity: 0.4;filter: alpha(opacity=40);color:orange;" href="profile.php?view=Different55.0" target="_blank">Different55</a>
- </b>
- <font style="color:#000000">
- <font style="opacity: 0.4;filter: alpha(opacity=40);">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>I made him say that </big>
- </font>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;opacity: 0.4;filter: alpha(opacity=40);color:orange;" href="profile.php?view=Different55.0" target="_blank">Different55</a>
- </b>
- <font style="color:#000000">
- <font style="opacity: 0.4;filter: alpha(opacity=40);">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>I'm working on something. </big>
- </font>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;" href="profile.php?view=soin.0" target="_blank">soin</a>
- </b>
- <font style="color:#000000">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>What? </big>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;opacity: 0.4;filter: alpha(opacity=40);color:orange;" href="profile.php?view=Different55.0" target="_blank">Different55</a>
- </b>
- <font style="color:#000000">
- <font style="opacity: 0.4;filter: alpha(opacity=40);">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>I just need to do a little more then it's perfect </big>
- </font>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;opacity: 0.4;filter: alpha(opacity=40);color:orange;" href="profile.php?view=Different55.0" target="_blank">Different55</a>
- </b>
- <font style="color:#000000">
- <font style="opacity: 0.4;filter: alpha(opacity=40);">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>I can force people to say things </big>
- </font>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;" href="profile.php?view=soin.0" target="_blank">soin</a>
- </b>
- <font style="color:#000000">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>? </big>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;opacity: 0.4;filter: alpha(opacity=40);color:orange;" href="profile.php?view=Different55.0" target="_blank">Different55</a>
- </b>
- <font style="color:#000000">
- <font style="opacity: 0.4;filter: alpha(opacity=40);">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>I'm not telling ANYONE. </big>
- </font>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;opacity: 0.4;filter: alpha(opacity=40);color:orange;" href="profile.php?view=Different55.0" target="_blank">Different55</a>
- </b>
- <font style="color:#000000">
- <font style="opacity: 0.4;filter: alpha(opacity=40);">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>This is so srsly abusable </big>
- </font>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;opacity: 0.4;filter: alpha(opacity=40);color:orange;" href="profile.php?view=Different55.0" target="_blank">Different55</a>
- </b>
- <font style="color:#000000">
- <font style="opacity: 0.4;filter: alpha(opacity=40);">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>I will die being 1/2 people who know how </big>
- </font>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;" href="profile.php?view=soin.0" target="_blank">soin</a>
- </b>
- <font style="color:#000000">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>Thought u were trying to clone yourself </big>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;opacity: 0.4;filter: alpha(opacity=40);color:orange;" href="profile.php?view=Different55.0" target="_blank">Different55</a>
- </b>
- <font style="color:#000000">
- <font style="opacity: 0.4;filter: alpha(opacity=40);">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>Not right now </big>
- </font>
- </font>
- </font>
- </font>
- </div>
- <div class="chat_list">
- <font style="background-color:transparent;">
- <b>
- <a style="color:#0096FC;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius:5px;padding:0 3px;background-color:#66ff66;font-weight:bold;font-size:160%;line-height:12px;text-shadow:2px 2px 2px #000;" href="profile.php?view=soin.0" target="_blank">soin</a>
- </b>
- <font style="color:#000000">
- <font style="text-shadow:2px 2px 2px #000;">
- <big>O </big>
- </font>
- </font>
- </font>
- </div>
- </div>
- <input id="message" type="text" style="width: 100%;-moz-border-radius:5px;border-radius:5px;" onkeyup="chatinput(event);">
- <a href="#" class="button" onclick="chat(); return false;">Chat</a>
- <a href="#" class="button" onclick="$j('#message').val('<b>' + $j('#message').val() + '</b>'); $j('#message').focus();return false;">B</a>
- <a href="#" class="button" onclick="$j('#message').val('<i>' + $j('#message').val() + '</i>');$j('#message').focus();return false;">
- <i>i</i>
- </a>
- <a href="#" class="button" onclick="$j('#message').val('<u>' + $j('#message').val() + '</u>');$j('#message').focus();return false;">
- <u>u</u>
- </a>
- <a href="#" class="button" onclick="$j('#message').val('<big>' + $j('#message').val() + '</big>');$j('#message').focus();return false;">
- <big>B</big>
- </a>
- <a href="#" class="button" onclick="$j('#message').val('<font style=\'font-size:80%\'>' + $j('#message').val() + '</font>');$j('#message').focus();return false;">
- <small>s</small>
- </a>
- <a href="#" class="button" onclick="$j('#message').val('<marquee scrollamount=10>' + $j('#message').val() + '</marquee>');$j('#message').focus();return false;">
- <marquee style="width:20px">m</marquee>
- </a>
- <a href="#" class="button" onclick="$j('#message').val('<font style=\'color:yellow;background-color:black;\'>' + $j('#message').val() + '</font>');$j('#message').focus();return false;">
- <font style="color:yellow;background-color:black">C</font>
- </a>
- <a href="#" class="button" onclick="$j('#message').val('/help');$j('#message').focus();chat(); return false;">Commands</a>
- <a class="button" href="http://andrograde.com" target="_blank">Andrograde</a>
- </div>
- </div>
- </div>
- </div>
- <!--</td><td width="120">
- <script type="text/javascript">
- google_ad_client = "pub-9130306790050769";
- /* chat side ad */
- google_ad_slot = "8624564023";
- google_ad_width = 120;
- google_ad_height = 600;
- </script>
- <script type="text/javascript"
- src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
- </script>
- </td></tr>
- </table>-->
- </div>
- <!-- Start Quantcast tag -->
- <script type="text/javascript">
- _qoptions={
- qacct:"p-4dptA78TbCXts"
- };
- </script>
- <script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script>
- <noscript>
- <img src="http://pixel.quantserve.com/pixel/p-4dptA78TbCXts.gif" style="display: none;" border="0" height="1" width="1" alt="Quantcast"/>
- </noscript>
- <!-- End Quantcast tag -->
- <!-- Analytics -->
- <script type="text/javascript">
- var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
- document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
- </script>
- <script src="http://www.google-analytics.com/ga.js" type="text/javascript"></script>
- <script type="text/javascript">
- var pageTracker = _gat._getTracker("UA-2412435-3");
- pageTracker._trackPageview();
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement