/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function bindConfirms()
{
    $(".delete").unbind();
    $(".confirm").unbind();
    $(".delete").click(function(){
        return confirm("Opravdu si přejete pokračovat v mazání?")
    });
    $(".confirm").click(function(){
        return confirm("Opravdu si přejete pokračovat?")
    });
}

function bindNewWindow()
{
    $(".newWindow").unbind().click(function(){
    window.open($(this).attr("href")); return false;
    });
}