﻿function MM_openBrWindow(theURL, winName, features) { 
	window.open(theURL, winName, features);
}

function openPdf(filePath) {
	var win = window.open(filePath, 'pdf', 'width=800, height=600, scrollbars=yes, resizable=yes');
	return false;
}

function highlightPresentation(presentationID, highlightSection) {
	var presTitle = document.getElementById("presTitle_" + presentationID);
	var presDesc = document.getElementById("presDesc_" + presentationID);
	if (presTitle) {
		presTitle.style.backgroundColor = (highlightSection) ? '#DADDE6' : '';
	}
	if (presDesc) {
		presDesc.style.backgroundColor = (highlightSection) ? '#DADDE6' : '';
	}
}
