<html>
<head><title>Simple calculator</title></head>
<script language="JavaScript">
function add()
{var a=[Link]; var b=[Link];
alert(parseFloat(a)+parseFloat(b));}
function subt()
{var a=[Link]; var b=[Link];
alert(parseFloat(a)-parseFloat(b));}
function mult()
{var a=[Link]; var b=[Link];
alert(parseFloat(a)*parseFloat(b));}
function div()
{var a=[Link]; var b=[Link];
if(parseFloat(b)==0){alert("divide zero error");}
else{alert(parseFloat(a)/parseFloat(b));}}
</script>
<body>
<H1>My Calculator</H1>
<form name="calculate">
<br>
<p>First number:<input type="text" name="value1" maxlength="3">
<br><br>
Second Number:<input type="text" name="value2">
<br><br><br><input type="button" value="Addition" onclick="add()">
<input type="button" value="Subtraction" onclick="subt()">
<input type="button" value="Multiply" onclick="mult()">
<input type="button" value="Divide" onclick="div()">
<input type="reset" value="Reset">
</form>
</body>
</html>