Hi,
<div> hab ich schon umgestellt, steht jetzt hinter dem layer, hatte auch probleme mit CSS bereitet.
Was ich bis jetzt herausgefunden habe ist , das ich für NS6 mit
"document.getElementById" arbeiten muss, nur weiss ich nicht wie er hier die richtigen zeilen auszusehen haben. ich beschäftige mich bisher nicht so stark mit JS.
so schauts aus geht aber nicht...?
<script>
<!--
var content=new Array()
content['teste'] = 'Blabla fliesstext';
content['out'] = ''; //leer zum entladen
function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers)
setTimeout("window.onresize=regenerate",450)
}
function changetext(whichcontent){
if (document.all) //IE
descriptions.innerHTML=''+whichcontent+''
else if (document.layers){ //NS4.x
document.d1.document.d2.document.write(''+whichcontent+'')
document.d1.document.d2.document.close()
}
else if (document.getElementById && !document.all) { //NS6 was ist falsch
document.getElementById('descriptions').document.write(''+whichcontent+'');
}
function unchangetext(whichcontent){
if (document.all)
descriptions.innerHTML=''+whichcontent+''
else if (document.layers){
document.d1.document.d2.document.write(''+whichcontent+'')
document.d1.document.d2.document.close()
}
}
//-->
</script>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="25%" valign="top" align="left">
<table border="0" width="100%">
<tr>
<td width="100%"><table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="100%">Menü</td>
</tr>
<tr>
<td width="100%" bgcolor="#5c5c5c" height="2"><font face="Arial"></font></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="25%" bgcolor="#e7e7e7"><div id="scriptmenu" style="LINE-HEIGHT: 20px">
<p>
<strong><font face="Verdana">
<a href="#" onMouseover="changetext(content['teste'])" onMouseout="unchangetext(content['out'])">Text<br>
</font></strong>
</div>
</td>
</tr>
<tr>
<td width="100%" style="LINE-HEIGHT: 20px"></td>
</tr>
</table>
</td>
<td width="4%"></td>
<td width="75%" valign="top" align="left">
<ILAYER id="d1" width = "155">
<LAYER id="d2" width = "155" height = "300">
</ILAYER>
</LAYER>
<div id="descriptions" align="left"></div>
</td>
</tr>
</table>