/******************************************************************************
 * Javascript for the approving irreversible actions
 *
 * copyright Egressive Limited 2004
 * Author: dlane@egressive.com 2004-09-20
 * Please contact author to for terms of use.
 ******************************************************************************/

/******************************************************************************
 * Creates a dialog with a message, which if ok'd, executes the href supplied
 */
function approveAction(message,approvedLink) {
	if (window.confirm(message)) {
		window.location.href = approvedLink;
	}
}