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="/css/print.css" rel="StyleSheet" /></head><body><div class="logoDiv"><img src="/images/display/uh-web-printable-logotype.gif" alt="University of Houston"></div>');

    if (document.getElementById('center-column-items')){
        newdocument.write(document.getElementById('center-column-items').innerHTML);
    }
    else {
        newdocument.write("There is a problem with the print version of this page.")
    }
    newdocument.write("<div class='footer'>&copy;2008 The University of Houston, 4800 Calhoun Road, Houston, Texas 77004 | 713.743.2255 </div></body></html>");
    newdocument.close();
}

