<html> <head> <script language="JavaScript" type = "text/javascript"> <!-- var username = prompt("Type your name:", ""); if (confirm("Your name is: " + username + ". Is that correct?") == true ) { alert("Hello " + username); } else { alert("Hi"); } //--> </script> </head> </html>