function confirmDelete(aURL) {
if(confirm('Are you sure you want to delete the record?')) {
location.href = aURL;
}
}
