// JavaScript Document

function openNewWindow() {

<!-- Replace the following line with ID of the div section that you want printed in -->
<!-- txt= document.getElementById(<replac>).innerHTML; -->
txt= document.getElementById('mainContent').innerHTML;
newwindow=window.open();

newdocument=newwindow.document;
<!-- may need to add Head and title sections if you want to use custom style sheets on -->.

newdocument.write('<html><body>Johnson County Election Office');
newdocument.write('<br /><br />');
newdocument.write(txt);
newdocument.write('</body></html>');
newdocument.close();
}