function show_confirm(text, url)
{
    var x=confirm(text);
    if (x==true){
        window.location=url;
    } else {
    }
}
