<script>
//lowTemp
//Catherine Casuat 10-1-07
// Demonstrates the basic if statement
var temp = 0;
var perfectTemp = 65;
temp = Math.floor(Math.random() * 100) + 1;
alert("It's " + temp + " degrees outside. ");
if (temp < perfectTemp){
alert("Wear a sweater!!");
} //end if
</script>