﻿// JScript File

function confirmDelete() {
      var agree=confirm("Are you sure you want to DELETE this record?");
      if (agree)
       return true ;
      else
       return false ;
    }
