<html>
<head>
<title>Hi</title>
<script
type="text/javascript">
function showStuff(id)
{
document.getElementById(id).style.display
= 'block';
}
function
hideStuff(id)
{
document.getElementById(id).style.display
=
'none';
}
</script>
</head>
<body>
What price are your
apples?
<br>
<span id="answer1" style="display: none;
return: false;">Our apples are 30 pence each.
If you buy 10 or more we can
sell them at a discounted bulk rate of 25 pence
each.<br>
<i>
Hide
</i></span>
</body>
</html>