void AddToBook(AddressBook& tempbook)
{
	string firsttemp;
	string lasttemp;
	string emailtemp;

	cout << endl;
	cout << "Please enter contact's first name: ";
	cin >> firsttemp;
	cout << endl;
	cout << "Please enter contact's last name: ";
	cin >> lasttemp;
	cout << endl;
	cout << "Please enter contact's email address: ";
	cin >> emailtemp;
	cout << endl;

	Contact tempcontact(firsttemp,lasttemp,emailtemp);
	tempbook.addContact(tempcontact);

	cout << "Contact added" << endl;
}