function PrintThisPage() 
{ 
   var current_date = new Date();
   var current_year = current_date.getYear();

   var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,resizable=no,"; 
       sOption+="scrollbars=yes,width=605,height=525,left=100,top=25";  

   var sWinHTML = document.getElementById('content').innerHTML; 
   
   var winprint=window.open("","",sOption); 
       winprint.document.open(); 
       winprint.document.write("<html><LINK href=/stylesheets/stylesheet_pv.css rel=Stylesheet><body>");
	   winprint.document.write("<table width=100 border=0 cellspacing=0 cellpadding=0>");
       winprint.document.write("<tr>");
       winprint.document.write("<td nowrap><a href=javascript:self.print()>Print this page</a> | <a href=# onclick=window.close()>Close</a></td>");
       winprint.document.write("</tr>");
       winprint.document.write("</table>");
	   winprint.document.write(sWinHTML);
       winprint.document.write("&copy;" + current_year +" Regents of the University of Minnesota. All rights reserved.<br>");
	   winprint.document.write("<em>The University of Minnesota is an equal opportunity educator and employer.</em>");
	   winprint.document.write("</body></html>"); 
       winprint.document.close(); 
       winprint.focus(); 
}

function PrintThisForm() 
{ 
   var current_date = new Date();
   var current_year = current_date.getYear();

   var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,resizable=no,"; 
       sOption+="scrollbars=yes,width=605,height=525,left=100,top=25";  

   var sWinHTML = document.getElementById('PrintableForm').innerHTML; 
   
   var winprint=window.open("","",sOption); 
       winprint.document.open(); 
       winprint.document.write("<html><LINK href=/stylesheets/stylesheet_pv.css rel=Stylesheet><body>");  
	   winprint.document.write("<table width=100 border=0 cellspacing=0 cellpadding=0>");
       winprint.document.write("<tr>");
       winprint.document.write("<td nowrap><a href=javascript:self.print()>Print this page</a> | <a href=# onclick=window.close()>Close</a></td>");
       winprint.document.write("</tr>");
       winprint.document.write("</table>");
	   winprint.document.write(sWinHTML);
       winprint.document.write("&copy;" + current_year +" Regents of the University of Minnesota. All rights reserved.<br>");
	   winprint.document.write("<em>The University of Minnesota is an equal opportunity educator and employer.</em>");
	   winprint.document.write("</body></html>"); 
       winprint.document.close(); 
       winprint.focus(); 
}