function ask(txt, URL)
{
    if(confirm(txt)) window.location.href=URL
}
    
function askTF(txt)
{
    if(confirm(txt)) 
    {
        return true;
    }
    else
    {
        return false;
    }
}
