/********************************/
/* author: Tomasz Nabrzeski     */
/* e-mail: tnabrzeski@gmail.com */
/* year:   2008                 */
/********************************/
function vote(id, type)
{
    $.ajax({
        type: "POST",
        url: baseUrl+"ocen/",
        data: "id="+id+"&vote="+type,
        success: function(msg){
            alert(msg);
        }
    });
}
