// JavaScript Document


function confirmDel(link){
var ans = confirm("Are You Sure to Delete This Record !") ;
//link = "http://localhost/motal/src/" + link ;
//alert(link);
if(ans){
window.location = link ;
}
}
