<html>
<head><title>Conversion</title></head>
<body bgcolor="33cccc"><font face="Helvetica"><center>
<h1>How Much Is It?</h1>
<script language="Javascript">
function convertD2E (priceInD) {return .70*priceInE;}
function convertE2D (priceInE) {return 1.27*(priceInD);
}
</script>
<form name="amount">
<h2> US Dollars:
<input type=text name="textPriceD" size=4
onChange="document.amount.textPriceE.value = convertD2E(document.amount.textPriceD.value)"> $</h2>
<h2> EU Euros:
<input type=text name="textPriceE" size=4
onChange="document.amount.textPriceD.value = convertE2D(document.amount.textPriceE.value)"> €</h2>
</form></center>
</body>
</html>