<HTML>
<BODY>
<SCRIPT language="JavaScript">
<!--
var paycheck=20;
document.write(paycheck+"<BR>");
paycheck+=2000;
document.write(paycheck+"<BR>");
paycheck=paycheck-500;
document.write(paycheck+"<BR>");
paycheck=paycheck*0;
document.write(paycheck+"<BR>");
paycheck=paycheck+500;
document.write(paycheck+"<BR>");
paycheck-=80;
document.write(paycheck+"<BR>");
//-->
</SCRIPT>
</BODY>
</HTML>
|