function getContent(table,order,set,where,mode) {
	$.post("/bsiadmin/core.php",
	{ 
		action: 'pageContent',
		action_script: 'pagination',
		table: table,
		order: order,
		where: where,
		set: set,
		mode: mode
 	}, 
 	function (data){ 
		$('#data_replace').html(data.output);
	 },"json");
}
