﻿function printVersion(){
    var headerText="head";
    var bodyText="body";
    newwindow=window.open("","","toolbar=no,status=no,width=610,height=400,location=no,scrollbars=yes,menubar=yes,resizable=yes");
    newdocument=newwindow.document;
    newdocument.write('<html><'+headerText+'><link rel="stylesheet" type="text/css" href="/styles.css" /><style>span.tab {display: none;} span.tabSelected {font-size: 140%; padding: 0px; margin: 0px; display: block; border: none;} .footerLogoPrint {float: left;} body {background: #ffffff;} .noPrint { display: none; }</style></'+headerText+'><'+bodyText+'><div style="text-align:left"><div class="logoDiv"><img src="/images/display/printLogo.jpg" alt="American Dental Association Logo" class="printLogo"></div><div id="appendcontent">');
    if (document.getElementById('printContainer')){
        //var getContent = document.getElementById('printContainer').cloneNode(true);
        //newdocument.getElementById('appendcontent').appendChild(getContent);
        //newdocument.write(document.getElementById('printContainer').innerHTML);
        newwindow.document.getElementById('appendcontent').innerHTML = document.getElementById('printContainer').innerHTML;
    }
    else {
        newdocument.write("There is a problem with the print version of this page.&nbsp;&nbsp;Please contact the Web Support Team.");
    }
    newdocument.write('</div><div style="clear: both;"></div><img src="/images/display/footerLogo.gif" alt="American Dental Association" class="footerLogoPrint"><div style="float:left;padding: 0px 10px 10px 20px; display: block; ">Copyright &copy; 1995-2010 American Dental Association.<br />Reproduction or republication strictly prohibited without prior written permission.</div></div><script type="text/javascript">function switchTabs(){}</script></'+bodyText+'></html>');
    newdocument.close();
}
