function tableload(location,pos)
{
	if(pos=="wtable"){
		location=location+"/admin3/ok.php";

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

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

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