function show1(){
  var answerText = "Answers\n------------------------------------\n";
  answerText=answerText+"\n7. Front Desk: \nOk. One night comes to $145.00 plus tax. \nMay I have your name please?\n";
  answerText=answerText+"\n4. Guest:      \nA double, please. How much is that?\n";
  answerText=answerText+"\n8. Guest:      \nIt's Davies. Robertson Davies.\n";  
  answerText=answerText+"\n5. Front Desk: \nIt's $145.00 a night. \nHow many nights will you be staying?\n";
  answerText=answerText+"\n6. Guest:      \nJust tonight.\n";
  answerText=answerText+"\n3. Front Desk: \nWould you prefer a single or a double?\n";
  answerText=answerText+"\n=====================================\n";
  answerText=answerText+"\nConversation in the right order: \n";
  answerText=answerText+"\n=====================================\n";
  answerText=answerText+"\n3. Front Desk: \nWould you prefer a single or a double?\n";
  answerText=answerText+"\n4. Guest:      \nA double, please. How much is that?\n";
  answerText=answerText+"\n5. Front Desk: \nIt's $145.00 a night. \nHow many nights will you be staying?\n";
  answerText=answerText+"\n6. Guest:      \nJust tonight.\n";
  answerText=answerText+"\n7. Front Desk: \nOk. One night comes to $145.00 plus tax. \nMay I have your name please?\n";
  answerText=answerText+"\n8. Guest:      \nIt's Davies. Robertson Davies.\n";
  alert(answerText);
}
function show2(){
    var answerText = "Answers\n------------------------------------\n";
    answerText=answerText+"\n17. Front Desk: \nYes, there is. It's on the 2nd floor. \nBut you have to bring the towel from your room.\n";
    answerText=answerText+"\n15. Front Desk: \nCheckout is at 10 o'clock. \nYour room number is 505. Is there\n";
    answerText=answerText+"\n20. Guest:      \nGreat. What time do the restaurants close?\n";
    answerText=answerText+"\n16. Guest:      \nIs there a pool here?\n";
    answerText=answerText+"\n18. Guest:      \nAnd how about a restaurant?\n";
    answerText=answerText+"\n19. Front Desk: \nThere are restaurants on the 1st and 3rd floor \nand there's a cafe next to the lobby.\n";
    answerText=answerText+"\n14. Guest:      \nGreat. I'll pay with VISA then. \nWhat time is checkout?\n";
    answerText=answerText+"\n=====================================\n";
    answerText=answerText+"\nConversation in the right order: \n";
    answerText=answerText+"\n=====================================\n";
    answerText=answerText+"\n14. Guest:      \nGreat. I'll pay with VISA then. \nWhat time is checkout?\n";
    answerText=answerText+"\n15. Front Desk: \nCheckout is at 10 o'clock. \nYour room number is 505. Is there anything else\nyou would like to know?\n";
    answerText=answerText+"\n16. Guest:      \nIs there a pool here?\n";
    answerText=answerText+"\n17. Front Desk: \nYes, there is. It's on the 2nd floor. \nBut you have to bring the towel from your room.\n";
    answerText=answerText+"\n18. Guest:      \nAnd how about a restaurant?\n";
    answerText=answerText+"\n19. Front Desk: \nThere are restaurants on the 1st and 3rd floor \nand there's a cafe next to the lobby.\n";
    answerText=answerText+"\n20. Guest:      \nGreat. What time do the restaurants close?\n";
    alert(answerText);
}
