﻿// JScript File

//Handles btnDelete Click event
function btnDelete_onClick(_this)
{
    if (confirm('Are you sure you wish to delete this news posts and all of its comments?'))
    {
        eval(_this.href);
        return true;
    }
    else
        return false;
}

