<!-- Begin

function newWin(page,target,pageprops) {
if (target=="")
target = "CtrlWindow";
if (pageprops=="")
pageprops = "width=700,height=470,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes,location=yes,directories=no,status=yes";
OpenWin = this.open(page, target, pageprops);
}

function ConfirmDelete(s){
    msg = "Are you sure you want to delete " + s + "?\n\n To continue with delete, click 'OK'.  Else, click 'Cancel'."
    return confirm(msg);
}
// End -->