function verify(){       //we get the values in the form out of the 0 index in the forms[] array since it's the only form in the document       msg = "Please Verify the Information you Entered: \n\n Name: " + document.forms[0].myName.value + "\n Age: " + document.forms[0].myAge.value + "\n\n If this information is correct, click 'OK'"       return confirm(msg);}