Wie kann ich per Linkdruck einen Text erstellen, der unter dem Link angezeigt wird, aber nicht mit document.write. Also so ähnlich wie ein aktives Bild nur eben mit text

<script type="text/javascript">
<!--
var homea = "Home1";
var homeb = "Home2";
function ahome() { document.all.homea.innerHTML = homeb; }
function bhome() { document.all.homea.innerHTML = homea; }
//-->
</script>
</head>
<font face="Pristina" size="+1">
<p id="homea" onMouseOver="ahome()" onMouseOut="bhome()">Home1</a> </p>