<ole>
Det kunne være noget i denne stil:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "
http://www.w3.org/TR/html4/strict.dtd"><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Exp test</title>
<style type="text/css">
.mOverPicHolder {
position: relative;
}
.mOverPicHolder span {
position: absolute;
width: 100%;
left: 0;
top: 50%;
margin-top: -1em;
font: bold 18px arial, sans-serif;
text-align: center;
}
</style>
<script type="text/javascript">
function setInfo(oPic, bEmpty) {
var oInfo = oPic.parentNode.getElementsByTagName("span")[0];
oInfo.firstChild.nodeValue = bEmpty ? "\u00a0" : oPic.getAttribute("alt");
}
</script>
</head>
<body>
<div>
<span class="mOverPicHolder" style="width:104px;height:110px">
<img onmouseover="setInfo(this)" onmouseout="setInfo(this, true)" alt="En tekst" title=""
src="
http://www.eksperten.dk/img/elogo.png" style="width:104px;height:110px"><span> </span></span>
</div>
</body>
</html>
/mvh
</bole>