Hi
I have the following piece of Javascsript which hides the entire page then only shows a the div called "content". This div is the print firendly version of the page. It works fine in IE but not in any version of Netscape -- any help would be much appreciated!
function showPrinterFriendly() {
// deletes all menus content etc. from the document
// then add just the content back
var strContent = document.all.divContent.innerHTML;
while( document.body.firstChild) {
document.body.firstChild.removeNode(true);
}
newDiv = document.createElement('DIV');
document.body.appendChild( newDiv);
newDiv.innerHTML = strContent;
window.print();
alert ("Click OK when printing is complete.");
history.go();
}

