function getTotal() {
var x = document.totaler.x.value;
var y = document.totaler.y.value;
var z = x * y;
document.totaler.z.value = Math.round(z*1000)/1000;
}

document.write('<form name="totaler"><table border="0" width="90%"><tr><td width="100%"><p align="left"><font color="#330066"><b>How to Price Decals / Stickers:</b></font></td></tr><tr><td width="100%"><font size="2">#1 Enter LENGTH of decal / sticker in inches:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><input type="text" name="x" size="5"></td></tr><tr><td width="100%"><font size="2">#2 Enter HEIGHT of decal / sticker in inches:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><input type="text" name="y" size="5"></td></tr><tr><td width="100%"><font size="2">#3 Click <a href="#" onClick="javascript:getTotal();return false">here</a> for SIZE of decal / sticker (sq inches):&nbsp;</font><input type="text" name="z" size="5"></td></tr></table></form>')
