/*************************

BYLAZ PURPLE BAG AJAX FUNCTIONS
AJAX.PHP EM /PHP :d

*******************************************/

function inclui_bd( table, campo, value){
	var resultado = $.ajax({type: "POST", url: dir+"php/ajax.php", data: "table="+table+"&campo="+campo+"&value="+value+"&ac=inserir",async: false}).responseText;
    return resultado;
}
function atualiza_bd( table, campo, value, where ){
	var resultado = $.ajax({type: "POST",url: dir+"php/ajax.php",data: "table="+table+"&campo="+campo+"&value="+value+"&ac=atualiza&where="+where, async: false}).responseText;
    return resultado;
}

