hallo,
ich will, dass ich nen text in meinem bild schrieben kann,
aber mit tabbele geht das nciht, weil ich nen mouseover-button habe...
<html>
<head>
<title>www.andreas-sass.de</title>
<script language="JavaScript">
<!--
function doHover(b,i)
{
f = document[b].src;
f = f.substr(0,f.length-5);
f+=i+'.jpg';
document[b].src = f;
}
//-->
</script>
</head>
<body text="#FFFFFF" bgcolor="#000000" link="#FF0000" alink="#FF0000" vlink="#FF0000">
<a href="#" onmouseover="doHover('bild','c')" onmouseout="doHover('bild','b')" onMousedown="doHover('bild','d')"><img src="bild_b.jpg" name="bild" border="0"></a>
</body>
</html>