<!--
	function popUpDirectDownload(url) {
		var url = "/qb/products/common/direct_download/email.jsp";
		var windowName = "direct_download";
		var width = 994;
		var height = 770;
		
		var positionX = (screen.availWidth - width) / 2;
		var positionY = (screen.availHeight - (height+90)) / 2;
		
		window.open(url,windowName,"width=" + width + ",height=" + height + ",left=" + positionX + ",top=" + positionY + ",directories=no,location=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,toolbar=yes");
	}
	
	function openEcosystem(pURL) {
		window.location.href = pURL;
		window.moveTo(0,0);
		window.resizeTo(window.screen.availWidth,window.screen.availHeight);
	}
-->