Hola Shute.
Te pongo un ejemplo a ver si te sirve de ayuda:
Código HTML:
<html>
<head>
<script>
function calculata() {
sum1=parseInt(document.getElementById('t1').value);
sum2=parseInt(document.getElementById('t2').value);
document.getElementById('tot').value=sum1 * sum2;
}
</script>
</head>
<body>
<input type="text" id="t1" />
<input type="text" id="t2" />
<input type="text" id="tot" readonly="readonly" />
<input type="button" onclick="calculata()" />
</body>
</html>
Saludos,