/*
	FILE PURPOSE:
		Asks a user for confirmation of a record deletion
	
	UPDATE HISTORY:
		DATE				DESCRIPTION
		21-Nov-05			File created
		1-Feb-06			First live version
	
	PARAMS: 
		NAME		TYPE		REQUIRED/OPTIONAL 		DESCRIPTION	
		recType		string		required				The value is inserted into the confirmation message
	
	ADDITIONAL NOTES: N/A
*/
function confirmDelete(recType){
		return confirm('Are you sure you want to delete this ' + recType + '?');
}
