<html>
<head>
<title>Dialog Boxes</title>
</head>
<body>

<script language="javascript">
<!--
alert("hello and welcome");
name=prompt("enter first name","")
result=confirm("Are you really "+name+"?")
if(result)
  {alert("you are very honest")}
else
{alert("you can't be trusted")}
//-->
</script>

</body>
</html>