How do I print the indicated div (without manually disabling all other content on the page)?
I want to avoid a new preview dialog, so creating a new window with this
Use a special Stylesheet for printing
and then add a class i.e. "noprint" to every tag which's content you don't want to print.
In the CSS use
.noprint { display: none; }