function popprint() {
	    lrgewin = window.open("about:blank","","height=500,width=545,scrollbars=yes");
	
	    setTimeout('update()',500)
	}
	
	function update() {
	    doc = lrgewin.document;
	    doc.open('text/html');
	    doc.write('<HTML><HEAD><TITLE>'+document.title+'<\/TITLE><style type="text\/css"> body{Font-family: "Times New Roman",Times,serif;color: #000;} p{font-size: 11pt;line-height: 14pt;font-weight: normal;margin-bottom: 1em;}h1{font-size: 24pt; line-height: 28pt;border-bottom:1px solid black;}h2{font-size: 18pt; line-height: 24pt;}h3{font-size: 14pt; line-height: 18pt;}h4{font-size: 12pt; line-height: 14pt;}ul li{font-size: 11pt; line-height: 14pt;}#main_body{padding:10px;} a:link:after, a:visited:after {content: " (" attr(href) ") "; font-size: 90%;}<\/style><\/HEAD><BODY bgcolor="white">');
	   
	     doc.write('<h1><form name="viewn"><input type="button" value="Print" onClick="window.print()"><\/form></h1>');


	    doc.write(document.getElementById('main_body').innerHTML);
		doc.write('<hr>');
		doc.write(document.getElementById('footer').innerHTML);

	    doc.write('<cite>Jefferson Lab :: ');
		doc.write(location.href);
		doc.write('</cite><br />');
		doc.write('<br><br> <\/BODY><\/HTML>');
	    doc.close();
	}
	