// JavaScript Document
function printfriendly() {
	printtext = document.getElementById('maintext').innerHTML;
	newtitle = document.title;
	printwindow = window.open("","", "width=640,height=400,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes");
	printwindow.document.title = newtitle;
	printwindow.document.writeln('<html>');
	printwindow.document.writeln('<head>');
	printwindow.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
	printwindow.document.write('<style media="all" type="text/css"> ');
	printwindow.document.write('BODY { margin: 10px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; line-height: 1.1; } ');
	printwindow.document.write('TD { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; }');
	printwindow.document.write('h1 { font-size: 18px; }');
	printwindow.document.write('h2 { font-size: 16px; font-style:italic; }');
	printwindow.document.write('h3 { font-size: 14px; font-weight: bold; }');
	printwindow.document.write('#bodytext { font-size: 12px; text-align: justify; line-heigt: 120%}');
	printwindow.document.write('#bodytext A { font-size: 12px; color: black}');
	printwindow.document.write('.title { font-size: large; color: black}');
	printwindow.document.write('</style>');
	printwindow.document.writeln('</head>');
	printwindow.document.writeln('<body>');
	printwindow.document.writeln('<div id="bodytext">');
	printwindow.document.write(printtext);
	printwindow.document.writeln('</div>');
	printwindow.document.writeln('</body>');
	printwindow.document.writeln('</html>');
	printwindow.document.close();
}

function printyear() {
	today = new Date(); thisyear = today.getFullYear(); document.write(thisyear);
}