function printVersion() {
	
	newwindow=window.open("","","toolbar=no,width=610,height=400,location=no,scrollbars=yes,menubar=yes,resizable=yes")
	newdocument=newwindow.document;
	
	var d = new Date();
	var year = d.getFullYear();

	newdocument.write("<html><head><link type='text/css' href='http://www.colum.edu/Site_Files/includes/print.css' rel='StyleSheet' /></head>");
	newdocument.write("<img id='logo' alt='Columbia College Chicago' src='http://www.colum.edu/images/logo.png' /><hr/>");
	
	if ($('.bodyCopySpecial').length) {
	
		newdocument.write($('#printContainer .bodyCopySpecial').html());
		
	} else {
	
		newdocument.write($('#printContainer .bodyCopyHeader').html());
		newdocument.write("<div id='content'>" + $('#printContainer .bodyCopyBack').html() + "</div>");
	
	}
	
	newdocument.write("<div id='footer'>&copy; " + year + " Columbia College Chicago</div>");
	newdocument.write("</body></html>");
	newdocument.close();
	
	newwindow.print();
	
}
