function tableload(location,pos)
{
	if(pos=="carousel"){
		location="/admin2/ok.php";
		$.ajax({
		   type: "GET",
		   url: location,
		   dataType: "html",
		   cache: false,
		   success: function(msg){
			 $("#carousel").html(msg);
			 $("div.carousel").scrollable({circular:true}).navigator().autoscroll({ autoplay: true,interval:8000 });
		   }
		 });
		

	}else if(pos=="sidefContainer"){
		location="/admin2/aside.php";

		$.ajax({
		   type: "GET",
		   url: location,
		   dataType: "html",
		   success: function(msg){
			 $("#"+pos).html(msg);
		   }
		 });
	}
	
}
