Move your mouse over this links: Home | HTML Tutorials | JavaScript | Resources | To understand what is going on, take a look at how the link is coded. <a href="../index.html" onMouseOver="document.tip1.tip2.value='Go Back to My HomePage'" onMouseOut="document.tip1.tip2.value=''">Home</a> | <a href="../html/index.html" onMouseOver="document.tip1.tip2.value='Go to My HTML Tutorials Page'" onMouseOut="document.tip1.tip2.value=''">HTML Tutorials</a> | <a href="../js/index.html" onMouseOver="document.tip1.tip2.value='Go to My JavaScript Page'" onMouseOut="document.tip1.tip2.value=''">JavaScript</a> | <a href="../resources/index.html" onMouseOver="document.tip1.tip2.value='Go to My resource Page'" onMouseOut="document.tip1.tip2.value=''">Resources</a> | <form name="tip1"> <input type="text" size=30 name="tip2"> </form> To access anything within text input field, I would write: documnt.form's name.input's name |