Nå okay :), men nu har jeg jo lavet det så kan du jo lige så godt se om du kan bruge noget af det :)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "
http://www.w3.org/TR/REC-html40/strict.dtd"><html>
<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<title>Test.</title>
<style type="text/css">
td { vertical-align: top; border: 1px solid red; }
</style>
<script type="text/javascript">
function showPic(oEvent) {
eObject=oEvent.target?oEvent.target:oEvent.srcElement;
if(eObject.tagName=="IMG") {
oPic=new Image();
oPic.src=eObject.src;
ratio=oPic.height/oPic.width;
if(oPic.width>oPic.height) { oPic.width=200; oPic.height=200*ratio; }
else { oPic.height=200; oPic.width=200/ratio; }
document.getElementById("picView").src=oPic.src;
document.getElementById("picView").height=oPic.height;
document.getElementById("picView").width=oPic.width;
document.getElementById("picView").style.display="block"; } }
</script>
</head>
<body>
<table style="width: 800px; margin: 0px auto;"><tr>
<td colspan="3" onmouseover="showPic(event);" onmouseout="document.getElementById('picView').style.display='none';">
<img src="pic1.jpg" style="height: 100px;" alt="">
<img src="pic2.jpg" style="height: 100px;" alt="">
</td>
</tr><tr>
<td style="width: 150px;"><p>Evt. en menu !</p></td>
<td><p>En masse indhold !</p></td>
<td style="width: 200px;">
<div style="width: 200px; height: 200px; border: 1px solid green;">
<img id="picView" src="" style="display: none;" alt="">
</div>
</td></tr></table>
</body>
</html>
Mvh. Johan