function detail (nummer) {
detailWindow = window.open('', '', 'width=350,height=400,left=100,top=100,scrollbars=yes');
var details = '<body bgcolor="#6A0004" style="color:#fdfdfd;">' + document.getElementById(nummer).innerHTML + '<\/body>';
detailWindow.document.write(details);
}
Wieso...