
function getGraph()
{
	ajaxSend("/ajax/getIndexGraph.cfm", getGraphResponse);
}

function getGraphResponse(response)
{
	document.getElementById("getGraphContainer").innerHTML = response;
}


function getKeywordTotals()
{
	ajaxSend("/ajax/getKeywordTotals.cfm", getKeywordTotalsResponse);
}

function getKeywordTotalsResponse(response)
{
	document.getElementById("getClipCountContainer").innerHTML = response;
}

function getKeywordsFound()
{
	ajaxSend("/ajax/getKeywordsFound.cfm", getKeywordsFoundResponse);
}

function getKeywordsFoundResponse(response)
{
	document.getElementById("getKeywordsFoundContainer").innerHTML = response;
}