function setDisplayStyle(DisplayType) {
	if (DisplayType == "print") {
		document.getElementById("header").style.display="none";
		document.getElementById("footer").style.display="none";
		document.getElementById("container").style.margin="0px";
		document.getElementById("content").style.border="none";
		document.getElementById("content").style.width="100%";
		document.getElementById("contentnav").style.display="none";
		document.getElementById("breadcrumb").style.display="none";
		document.getElementById("contentmain").style.padding="0px";
		document.getElementById("contentmain").style.width="100%";
		document.getElementById("contentmain").style.color="#000000";
		document.getElementById("webversion").style.display="block";
		
		if (document.styleSheets[0].cssRules) {
			document.styleSheets[0].cssRules[0].style.backgroundColor="#ffffff";
			document.styleSheets[0].cssRules[1].style.color="#000000";
			document.styleSheets[0].cssRules[2].style.color="#000000";
			document.styleSheets[0].cssRules[3].style.color="#000000";
			document.styleSheets[0].cssRules[4].style.color="#000000";
			document.styleSheets[0].cssRules[5].style.color="#000000";
			document.styleSheets[0].cssRules[6].style.color="#000000";
		} else if (document.styleSheets[0].rules) {
			document.styleSheets[0].rules[0].style.backgroundColor="#ffffff";
			document.styleSheets[0].rules[1].style.color="#000000";
			document.styleSheets[0].rules[2].style.color="#000000";
			document.styleSheets[0].rules[3].style.color="#000000";
			document.styleSheets[0].rules[4].style.color="#000000";
			document.styleSheets[0].rules[5].style.color="#000000";
			document.styleSheets[0].rules[6].style.color="#000000";
		}
	} else if (DisplayType == "web") {
		window.location.reload(true);
	}
}