
///////////////////////////////////////////////////////////////////////
// Web-based Client Area
// Copyright (c) 2003 by Curtis Thompson
// http://www.sitruc.com
//
// This program is free software. You can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License.
//
// utility.js
//
// javascript utilities for the system
///////////////////////////////////////////////////////////////////////

// are you sure?
function confirmDelete (msg, url) {
    var yup = confirm(msg);
    if (yup) {
        // alrighty
        document.location.href = url;
    }    
}
