Linked List Stack Implementation
pHead->Display(); // Displays the whole Stack
if(!pHead->IsStackEmpty())
cout << "It's got stuff in it, O Exalted One!"<< endl;
pHead->Top();//Views the top item
pHead->Pop();//destroys the top item
pHead->Top();//checks to see if the top item changed