<html>
<head>
<title>A Simple Page</title>
<script language="JavaScript">
<!--
function firstMessage()
{
alert("Here is the first message!");
secondMessage();
alert("And here is the third!");
}
function secondMessage()
{
alert("And here is the second!");
}
// -->
</script>
</head>
<body onLoad="firstMessage()">
</body>
</html>
|