Ya lo solucione corrigiendo esto:
Código:
function sumar()
{
var total;
total = parseInt(document.form1.costxp.value)+parseInt(document.form1.costvista.value);
document.form1.totals.value='total'
}
por esto:
f
Código:
unction sumar()
{
var total;
total = parseInt(document.form1.costxp.value)+parseInt(document.form1.costvista.value);
document.form1.totals.value=+ total
}