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/Kellogg.css" rel="StyleSheet" /><link type="text/css" href="/styles/print.css" rel="StyleSheet" /></head><body bgcolor="#FFFFFF"><img class="logo" src="/images/display/logo.gif" alt="Kellogg School of Management"><br /><br />');
    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.close();
}