
// <![CDATA[

function openWindow(fileToOpen, winWidth, winHeight){
	if (typeof(winWidth) != 'number') winWidth = 400;
	if (typeof(winHeight) != 'number') winHeight = 580;
	var newWin = window.open(fileToOpen, 'ccPopup', 'width='+winWidth+',height='+winHeight+',statusbar=no');
	if (newWin == null){
		alert("Your browser has blocked a page from being displayed.\nPlease add this site to your popup blocker's allow list to ensure your access to all pages on our site.");
	} else {
		if (newWin.focus) newWin.focus();
	}
}

// ]]>
