// popup

function cleanWin(url,width,height) {
	var left = (screen.width - width) / 2;
	var top = (screen.height - height) / 2;
	var newWin
	newWin = window.open(url,"popup","left=" + left + ",top=" + top + ",width=" + width + ",height=" + height + ",menubar=no,scrollbars=no,resizable=no,toolbar=no")
	newWin.focus();
}

// show Carousel	
	
	function selectReport(reportName) {
		document.getElementById("lv"+currentReport).style.display = "none";
		document.getElementById("lv"+reportName).style.display = "block";
		currentReport = reportName;
	}
	var currentReport = "00";
