/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

hideAchi();
function reachedAchi(name,desc,points) {

    $.ajax({
        type:"post",
        url:'http://otherworld.hu/t_classes/',
        data:'a_name='+name+"&a_desc="+desc+"&a_points="+points,
        success:function(html) {
            document.getElementById('achi_zone').innerHTML = html;
            showAchi();
            setTimeout("hideAchi()", 500);
        }
    });

    
}

function showAchi() {
    $("#achi_zone").show("fast");
}

function hideAchi() {
    $("#achi_zone").hide("fast");
}



