<!-- Preventing accidental deletions, simple javascript -->

function checkCheckBox(f){
if (f.agree.checked == false )
{
alert('You must tick the box to complete this operation to prevent accidental deletions.');
return false;
}else
return true;
}
