/*		Author:			Matthew VanderMeer, mlvander@healthy.uwaterloo.ca
		Date:			March 2008
		Application:		Email Delivery System		
		Filename:			fcn_js_functions.js	
		MVC category:		Model: javascript functions
		Purpose:			This file contains all the javascipt code used in the current application
		
						
												
*/

function attach_delete_warning()
	{
	  document.MM_returnValue = confirm("Deleting this file attachment will delete the file from the server. Are you sure that you want to delete this?\nThis action cannot be undone!\nClick 'OK' to continue, 'Cancel' to exit");
	}

function comfirm_email_sent(recipients)
	{
		return_value = confirm("You are about to send this email to " + recipients + " individual(s).\n\nClick 'OK' to confirm and continue, 'Cancel' to go back.");
	}
	
function confirm_email_delete()
	{
		return_value = confirm("You are about to permanently delete the selected emails.\n\nThis action cannot be undone.\n\nClick 'OK' to confirm and continue, 'Cancel' to go back.");
	}
	
