<html>
<head>
<title>Execution Context Example 1</title>
<script type="text/javascript">
var color = "blue";
function changeColor(){
if (color === "blue"){
color = "red";
} else {
color = "blue";
}
}
changeColor();
alert("Color is now " + color);
</script>
</head>
<body>
</body>
</html>