function showActionPrompt(msg, url)
{
    r = confirm(msg);
    if(r == 1)
        document.location = url;
}
