THIS IS THE FILE:

<head>
<script language="JavaScript">
<!-- Hide script from old browsers
function square(number) {
	return number * number
}
// End script hiding from old browswers -->
</script>

</head>

<body>
<script>
	document.write("The function returned ", square(5), ".")
</script>
<p> All done.
</body>