<!--
function printSpecial()
{
	if (document.getElementById != null){
		var html = '<HTML>\n<HEAD>\n';
		html += '<LINK href="/css/style.css" type="text/css" rel="stylesheet">';
		
		html += '\n</HE' + 'AD>\n<center><BODY>\n';
		
		var printReadyElem = document.getElementById("printReady");
		
		if (printReadyElem != null){
            html += printReadyElem.innerHTML;
		}
		else{
			alert("Could not find the printReady section in the HTML");
			return;
		}
		html += '\n<scr' + 'ipt language=jav' + 'ascript>\n';
		//html += 'setTimeout("window.close()",2000)\n';
		//html += 'document.getElementsByTagName("body")[0].style.background = "#fff";\n';
		html += '</script>';
		html += '\n</BO' + 'DY>\n</center>\n</HT' + 'ML>';
		
		var printWin = window.open("","printSpecial","height=800,width=600");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		printWin.print();
		
	}
	else{
		alert("Sorry, the print ready feature is only available in modern browsers.");
	}
}

// -->