
function delete_conf(deletelink)
{
var confirm_del= confirm("This record will be DELETED. Click ok to confirm.");
if (confirm_del== true)
{
window.location= deletelink;
}
}
