<!--GLOBAL JAVASCRIPTS FOR Information Control WEB SITE-->


<!--BEGIN MENU ROLLOVERS-->
function changeImages() {
	if (document.images) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}
<!--END MENU ROLLOVERS-->


<!--BEGIN POPUP WINDOWS-->
function PopUp(sURL,sName,iWidth,iHeight) {
	var popupWin = new Object()

	popupWin.url = sURL;
	popupWin.width = iWidth;
	popupWin.height = iHeight;
	popupWin.name = sName;

	popupWin.left = (screen.width - popupWin.width) / 2;
	popupWin.top = (screen.height - popupWin.height) / 2;

	var attr = "left=" + popupWin.left + ",top=" + popupWin.top + ",resizable=no,scrollbars=yes,width=" + popupWin.width +",height=" + popupWin.height;

	popupWin.win = window.open(popupWin.url, popupWin.name, attr);
}
<!-END POPUP WINDOWS-->

