Hi Tolwin,
ich an deiner Stelle würde statt einem <div>-Tag um das <td> herum einfach in das <td> noch ein <table>-Tag einfügen, welches du dann ausblenden kannst.
Also am besten so (würde ich sagen):
function show(){
document.getElementByID("tabelle").style.visibility = "visible"
}
function hide(){
document.getElementByID("tabelle").style.visibility = "visible"
}
--------
<td bgcolor="#33CC00"><table id="tabelle" width="100%" height="100%" bgcolor="#33CC00"><tr><td style="color:#FFFFFF"><b>Hinweise</b></td></tr></table></td>
<a href="blabla.zip" onClick="show()">einblenden</a>
<a href="blub.zip" onClick="hide()">ausblenden</a>