<!--
    function popUp(fileName) {
		newWindow = window.open("","popUpWindow","toolbar=no,directories=no,member=no,scrollbars=yes,width=300,height=130,top=110,left=20");
		newWindow.focus();
		newWindow.location.href = fileName;
}

	function closeBox() {
		if (window.newWindow) {
				if (!newWindow.closed) newWindow.close();
		}
}
//-->

