
var site_url = "http://www.shortsshortsshorts.com";
var tagthis_ajax_url = "/wp-content/plugins/tagthis/backend.php";
var tagthis_page_hash = "www.shortsshortsshorts.com/wp-content/plugins/tagthis/tagthis-js.php?ver=2.9.2WP Cookie check,";
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",'c51ce410c124a10e0db5e4b97fc2af39');                                    
	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%';
}
}