function printVersion(){
    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><head><link type="text/css" href="/styles/print.css" rel="StyleSheet" /></head><body><div class="logoDiv"><img src="/images/printActions/logoPrint.gif" alt="William &amp; Mary"></div>');
    if (document.getElementById('pageTitle') && document.getElementById('printContainer')){
        newdocument.write("<h1>"+document.getElementById('pageTitle').innerHTML+"</h1>");
    }
    if (document.getElementById('printContainer')){
        newdocument.write(document.getElementById('printContainer').innerHTML);
    }
    else {
        newdocument.write("There is a problem with the print version of this page.")
    }
    newdocument.write("<div class='footer'></div></body></html>");
    newdocument.close();
}
