<html>
<head>
<script type = “text/javascript”>
<!–
var a=1, b=7, c=9;
if ( a < c )
{
document.writeln(“Junk” + a + “<br>”);
if (a <3 )
{
if ( b > 2)
{
document.writeln(“Loop” + b + “<br>”);
if ( b == 3)
{
document.writeln(“go” + b + “<br>”);
b=b-2;
}
a=a+5;
}
}
if (a < 5)
document.writeln(“Skip” + a + “<br>”);
if (a ==6)
{
b = b – 1;
if ( a > 5)
document.writeln(“Small” + b + “<br>”);
}
document.writeln(“Again” + a + “<br>”);
a = a + 2
}
</script>
</head>
</html>