var twitterAJAX;var share_id;function openTweetBox(id)
{if(!id)
{id='1';}
document.getElementById('tweet_box_'+id).style.display='block';if(doc=document.getElementById('tweet_link_'+id))
{doc.style.display='none';}
if(doc=document.getElementById('facebook_link_'+id))
{doc.style.display='none';}}
function tweetThis(txt,url,SITE_URL,path,id)
{if(!path)
{path='/tweet.php?action=getTweetDisplay';}
if(!id)
{id='1';}
share_id=id;openTweetBox(id);twitterAJAX=new XMLHttpRequest();twitterAJAX.onreadystatechange=ajaxReturn;twitterAJAX.open("POST",'http://'+SITE_URL+path,true);twitterAJAX.setRequestHeader("Content-type","application/x-www-form-urlencoded");data='txt='+txt+'&url='+url;twitterAJAX.send(data);}
function ajaxReturn()
{if(twitterAJAX.readyState==4)
{resp=JSON.parse(twitterAJAX.responseText);if(resp.error==0)
{document.getElementById('tweet_box_'+share_id).innerHTML=resp.text;}}}
