function mClick(cell){ if(event.srcElement.tagName=='TD') { cell.children.tags('A')[0].click(); } } function NeueFarbe(TDID,tf) { var COLtrue var COLfalse if(TDID.substr(0,3)=="men"){ COLtrue="#EDEEEF"; COLfalse="#CCCCCC"; }else if(TDID.substr(0,3)=="sub"){ COLtrue="#F9F9F9"; COLfalse="#EDEEEF"; }else if(TDID.substr(0,3)=="top"){ COLtrue="#FFECEC"; COLfalse="#EFEFEF"; }else if(TDID.substr(0,3)=="but"){ COLtrue="#0A00BB"; COLfalse="#08008C"; } if (document.all && !document.getElementById) // IE 4 { if (tf==1) { document.all[TDID].style.backgroundColor=COLtrue; document.all[TDID].style.cursor = 'hand'; } else { document.all[TDID].style.backgroundColor=COLfalse; } } else if (document.getElementById) // IE 5.x und NN 6 (Opera, theoretisch ;-) { if (tf==1) { document.getElementById(TDID).style.backgroundColor=COLtrue; document.getElementById(TDID).style.cursor= 'hand'; } else { document.getElementById(TDID).style.backgroundColor=COLfalse; } } /*else if (document.layers) // NN 4.x { if (tf==1) { alert("Hallo") document.layer[TDID].bgColor=COLtrue; } else { alert("Hallo") document.layer[TDID].bgColor=COLfalse; } }*/ } function MM_reloadPage(init) { //reloads the window if Nav4 resized if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) { document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }} else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload(); } MM_reloadPage(true);