<html>
<head>
<script type="text/javascript">
function convert(dragbones)
{
if (dragbones=="bones")
{
xp=document.getElementById("bones").value *288
document.getElementById("xp").value=Math.round(xp)
price=document.getElementById("bones").value *2500
document.getElementById("price").value=price + "GP"
xp2=document.getElementById("bones").value *72
document.getElementById("xp2").value=Math.round(xp2)
}
else
{
bones=(document.getElementById("xp").value /288)
document.getElementById("bones").value=Math.round(bones)
(document.getElementById("xp2").value /72)
document.getElementById("bones").value=Math.round(bones)
}
}
</script>
</head>
<body>
<p></p><b>DRAGON BONE ECTOFUNGUS XP CALCULATOR</b>
<br><b>Enter the total amount of bones in the first field below:</b></p>
<form>
<b>Number Of Bones:</b><br />
<input id="bones" name="bones" onkeyup="convert('bones')"><br />
<br /> <b>Total XP With Ecto Fungus:</b><br />
<input id="xp" name="xp" onkeyup="convert('xp')"><br /><b>Total XP Without Ectofungus:</b><br />
<input id="xp2" name="xp2" onkeyup="convert(xp2)">
<br><b>Total Price: (2500ea)</b><br><input id="price" name="price" onkeyup="convert(price)">
</form>
<br><font size="0">Copyright (c) Joshua090909 all right reserved</font>
</body>
</html>