function switchPrint() {
	
	var uri = window.location.toString();
	if (uri.indexOf('?print') > 0) {
		setActiveSS('preview print');
		//document.getElementById('printer-friendlier').style.display = "";
		//document.getElementById('all-out').style.display = "none";
	}
}

function setActiveSS(title) {
	var i, a, main;
	for (i = 0; (a = document.getElementsByTagName("link")[i]); i++){
		if (a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title")) {
		  a.disabled = true;
			if (a.getAttribute("title") == title) a.disabled = false;
		}
	}
}

function writePrinterFriendly(message) {
	document.write("<div id='prfr'>");
	document.write("<p><a href='?print'><img src='/images/printer.gif' alt='' \/> " + message + "</a><\/p>");
	document.write("<\/div>");
}

