var newWindow;
function makeNewWindow() {
    if (!newWindow || newWindow.closed) {
        newWindow = window.open("","","status,height=500,width=500,scrollbars=yes,resizable=yes")
        if (!newWindow.opener) {
        newWindow.opener = window;
        }
        // force small delay for IE to catch up
        setTimeout("writeToWindow()", 50);
    } else {
        // window's already open; bring to front
        newWindow.focus();
    }
}
function writeToWindow() {
    // assemble content for new window
		//var headline = document.getElementById("headline").innerHTML;
		//var mainContent = document.getElementById("article").innerHTML;
		//var printMe = headline+mainContent;
		var printMe = document.getElementById("printContent").innerHTML
var newContent = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\""
	newContent += "\"http://www.w3.org/TR/html4/loose.dtd\">"    
	newContent += "<html><head><title>Print</title><link href=\"http://billherz.com/template/css/global.css\" rel=\"stylesheet\" type=\"text/css\" /></head>"
    newContent += "<body id=\"print\"><input id=\"print_button\" type=\"button\" onClick=\"window.print()\" value=\"Print This Page\" /><hr noshade class=\"print_hr\" /><br>Printed from the wesite of Bill Herz<br>"+printMe+"<hr noshade class=\"print_hr\" />";
    newContent += "</body></html>";
    // write HTML to new window document
    newWindow.document.write(newContent);
    newWindow.document.close(); // close layout stream
}

