<html> <head> <script language="JavaScript" type = "text/javascript"> <!--
function DisplayMsg(NumVal) { if (NumVal == 1) { status = "Type your name in the field" ; } if (NumVal == 2) { status = "Type your phone number in the field" } } //--> </script> <title>Keyboard Event</title> </head> <body> <form name="form1"> <b>Name:</b> <input type = "text" name = "text1" onFocus="DisplayMsg(1)" size="20"><P> <b>Phone:</b> <input type = "text" name = "text2" onFocus="DisplayMsg(2)" size="20"></p> </form> </body> </html>