//Global js file that contains JavaScript functions that will be used throughout the site.

//delete function - confirms the user wants to delete a particular item before its removed.
function confirmDelete(customMsg){
	var tempStatus = false;
	if (customMsg == ""){
		tempStatus = confirm("Do you want to delete the selected item?");
	}else{
		tempStatus = confirm(customMsg);	
	}
	return tempStatus;
}
