/**
 * A very basic stylesheet switcher for an unusual circumstance:
 *
 * In this instance we have the following requirements:
 *	1. Visitor clicks 'Print' (in web browser): printed page should retain basic website structure
 *	2. Visitor clicks 'Print-Friendly Page' (on web page): page stylesheet changes to 'print friendly', and printed page should match in appearance.
 *
 *
 */
 
function switchStyles(switcher) {
	var webPrintStyles = document.getElementById('webPrintStyles');
	var screenStyles = document.getElementById('screenStyles');

	if (switcher > 0) {
		webPrintStyles.disabled = true;
		screenStyles.href = 'styles/magusta_print.css'
	} else {
		webPrintStyles.disabled = false;
		screenStyles.href = 'styles/magusta.css';
	}	
}