
var site_url = "http://www.weekendkindness.net";
var tagthis_ajax_url = "/wp-content/plugins/tagthis/backend.php";
var tagthis_page_hash = "";
var tagthis = new sack(tagthis_ajax_url);

function whenLoading(postid){
    var e = document.getElementById('tt-finished'+postid);
    e.innerHTML = "<p>Sending Data...Please Wait.</p>";
}

function whenLoaded(postid){
    var e = document.getElementById('tt-finished'+postid); 
    e.innerHTML = "<p>Data Sent...</p>";
    alert("Hi there");
}

function whenInteractive(postid){
    var e = document.getElementById('tt-finished'+postid); 
    e.innerhtml=tagthis.response;
}


function ajaxAddTag(postid)
{
	//alert("ADDING:"+postid);
    if(document.getElementById('tt-finished'+postid).style.visibility=='hidden')
{
document.getElementById('tt-finished'+postid).style.visibility='visible';
document.getElementById('tt-finished'+postid).style.width='250px';
document.getElementById('tt-finished'+postid).style.height='80px';
}
	var tagtext;
	tagtext=document.getElementById("tagtext"+postid).value;
    whenLoading(postid);
    
    //tagthis.onInteractive = whenInteractive(postid);
	tagthis.execute=1;
	tagthis.method='POST';
	tagthis.setVar("postid",postid);
	tagthis.setVar("tag",tagtext);
    tagthis.setVar("key",'73907fed82d21d4b3700c31aefb6b3c0');                                    
	tagthis.runAJAX();
    
    
}


function toggle(postid)
{
showTagThis(postid)
if(document.getElementById('tt-help'+postid).style.visibility=='hidden')
{
document.getElementById('tt-help'+postid).style.visibility='visible';
document.getElementById('tt-help'+postid).style.width='250px';
document.getElementById('tt-help'+postid).style.height='80px';
}
else
{
document.getElementById('tt-help'+postid).style.visibility='hidden';
document.getElementById('tt-help'+postid).style.width='0px';
document.getElementById('tt-help'+postid).style.height='0px';
}
}


function showTagThis(postid)
{       

if(document.getElementById('tagthis'+postid).style.visibility=='hidden')
{
document.getElementById('tagthis'+postid).style.visibility='visible';
document.getElementById('tagthis'+postid).style.width='100%';
document.getElementById('tagthis'+postid).style.height='100%';
}
}