/*
#######TOGGLES PRINTER CALLS FOR PLAIN TEXT OR GRAPHIC VERSIONS#######
WM ~ 10/23/5 ~ Put only necessary js changes in conditions and leave globals to the outside.
*/

function printCSS(selStyle){
//alert(selStyle);
if(selStyle=='text'){
	document.getElementById('cssPrintType').href='../../libraries/css/print_bw.css';
	document.getElementById('printBWheader').style.display='block';
	document.getElementById('tdContent').style.borderTop='0';
	document.getElementById('window').className='text_homePRINTbw';
	document.getElementById('printSegTitle').className='text_homePRINTbw';
	document.getElementById('printFooter').style.display='block';
	if(document.getElementById('spanContrib')!=null){
		document.getElementById('contrib').className='text_homePRINTbw'};
	window.print();
	window.location.reload()}

else if(selStyle=='graphics'){
	document.getElementById('cssPrintType').href='../../libraries/css/print_color.css';
	document.getElementById('clpLogo').src='../../images/graphics/logos/bunchgrass_sm_x.gif';
	document.getElementById('CLPlogoType').src='../../images/graphics/logos/clp_banner.gif';
	document.getElementById('window').className='windowPrintGraphics';
	document.getElementById('printFooter').style.display='block';
	if(document.getElementById('spanContrib')!=null){
		document.getElementById('contrib').className='text_homePRINTbw'};
	window.print();
	window.location.reload()}}