<html>
<head>
<title>Nested if Statements</title>
</head>
<body>
<script type="text/javascript">
<!--
var needsInfo;
var needsMoreInfo;
needsInfo = true;
needsMoreInfo = true;
if (needsInfo) {
document.writeln("info true");
if(needsMoreInfo){
document.write("<br>needs info true");
}
document.writeln("<br>Ordering is easy using our on-line service.");
}
// -->
</script>
</body>
</html>
|