function getAjaxError(fileurl)
{
	var error = "tttt";
	var ajax_value_file=ajax_folder+"getGenralAjax.php";
	$.ajax({
	   type: "POST",
	   url: ajax_value_file,
	   data: "types="+error+"&fileurl="+fileurl,
	   beforeSend: function(){
		},
	   success: function(msg){
		   $("#edd").html(msg);
	   }
	 });
}

function getScheduleBox(tables,prefixs)
{
	var ajax_value_file=ajax_folder+"getGenralAjax.php";
	$.ajax({
	   type: "POST",
	   url: ajax_value_file,
	   data: "table="+tables+"&prefix="+prefixs,
	   beforeSend: function(){
		},
	   success: function(msg){
		   $("#scheduleContent").html(msg);
	   }
	 });
}
