var inPrint = false;
function printSwap() {
	if (inPrint) {
		hideElement("printToggle");

		showElement("utilitybar");
		showElement("navbar");
		showElement("toolbar");
		showElement("subnavColumn");
		showElement("commissionerPhoto");
		showElement("homebar");
		showElement("breadcrumbs");
		showElement("photobar");
		document.getElementById("main").style.width = "754px";
		inPrint = false;
	} else {
		showElement("printToggle");

		hideElement("utilitybar");
		hideElement("navbar");
		hideElement("toolbar");
		hideElement("subnavColumn");
		hideElement("commissionerPhoto");
		hideElement("homebar");
		hideElement("breadcrumbs");
		hideElement("photobar");
		document.getElementById("main").style.width = "600px";
		inPrint = true;
	}
}

function hideElement(id) {
	if (document.getElementById(id)) {
		document.getElementById(id).style.display = "none";
	}
}
function showElement(id) {
	if (document.getElementById(id)) {
		document.getElementById(id).style.display = "block";
	}
}
