/**
 *   File: index.js
 *
 **/

function sContentLeftPaginate(id)
{
	//alert(id);
	cpaintCall('SELF', 'POST', 'showContentLeftPaginate',id, sContentLeftPaginateDone);
}
function sContentLeftPaginateDone(val)
{
   	//alert(val);
	document.getElementById("display_next_previous").innerHTML = val+"<br>";
}

/*		Return Site Content Left using cpaint ajax 		*/
function showSiteContentLeft(id)
{
	//alert(id);
	var img_path = "/app_contents/common/image/loading.gif";
	document.getElementById("loading").innerHTML	= "<img src="+img_path+">";
	
	cpaintCall('SELF', 'POST', 'showSiteContentLeft', id, showSiteContentLeftDone);
}

function showSiteContentLeftDone(val)
{
	//alert(val);
	document.getElementById("display_site_content_left").innerHTML = val+"<br>";
	document.getElementById("loading").innerHTML	="";

	
}
