﻿// JScript File

//    function window.onbeforeprint() { >> only works for IE
	function window_onbeforeprint() {
		var hidValue;
		hidValue = document.getElementById("hidBrowser");
		var vartrFY, varbtnExport, vartblView;
		vartrFY = document.getElementById("trFY");
		varbtnExport = document.getElementById("btnExport1");
		vartblView = document.getElementById("tblView");
		if (hidValue.value.substr(0,1) == "I") {
			//Make sure the browser is IE
			//Before printing document, hide Menu and other objects
			divScrollable.className = "scrollareaPrint";
			//divLogo.style.display = "none";
			divFixedMenu.style.display = "none";
			if (vartrFY != null) {
				trFY.style.display = "none";
			}
			if (varbtnExport != null) {
				document.forms[0].btnExport1.style.display = "none";
			}
			if (vartblView != null) {
				tblView.style.display = "none";
			}
		}
    }

//    function window.onafterprint() { >> only works for IE
    function window_onafterprint() {
		var hidValue;
		hidValue = document.getElementById("hidBrowser");
		var vartrFY, varbtnExport, vartblView;
		vartrFY = document.getElementById("trFY");
		varbtnExport = document.getElementById("btnExport1");
		vartblView = document.getElementById("tblView");
		if (hidValue.value.substr(0,1) == "I") {
			//Make sure the browser is IE
			//After printing document, redisplay Menu and other objects
			divScrollable.className = "scrollarea";
			//divLogo.style.display = "";
			divFixedMenu.style.display = "";
			if (vartrFY != null) {
				trFY.style.display = "";
			}
			if (varbtnExport != null) {
				document.forms[0].btnExport1.style.display = "";
			}
			if (vartblView != null) {
				tblView.style.display = "";
			}
		}   
    }

