function showBrochureQuickTool() {
	if (window.location.toString().indexOf("requestByEmail.do") != -1) {
		document.getElementById("brochuresLi").className = document.getElementById("brochuresLi").className.replace("hide", "");
	}
}

function setPdf() {
	if (document.getElementById("brochures").value != ""){
		var brochursValue = document.getElementById("brochures").value;
		console.log("=="+brochursValue);
		var url = BASE_CONTEXT + brochursValue;
		var imgObj = document.getElementById("imgDisplayId");
		imgObj.src=BASE_CONTEXT+imageObj[brochursValue];
		console.log("=="+imageObj[brochursValue]);
		document.getElementById("downloadPdfAnchor").href = url;
	}
	else{
		document.getElementById("downloadPdfAnchor").href = "#";
	}
}
