 function openPopupWindow2(windowURL,windowName,windowWidth,windowHeight) {

				// Modify the values in quotation marks to control window characteristics.
				var windowLeft = "100";  // Window x-coordinate in pixels
				var windowTop = "200";  // Window y-coordinate in pixels
				var windowLocation = "no";  // Boolean; enables input field for entering URLs
				var windowMenubar = "no";  // Boolean; enables window Menubar
				var windowStatus = "no";  // Boolean; enables window Status line
				var windowToolbar = "no";  // Boolean; enables window Toolbar (e.g. Back, Forward buttons)
				var windowResizable = "no";  // Boolean; enables window resizing
				var windowScrollbars = "yes";  // Boolean; enables window scrollbars

				// DO NOT MODIFY ANY OF THE CODE BELOW THIS LINE
				var winHt = "height=" + windowHeight, winWd = "width=" + windowWidth, winLft = "left=" + windowLeft, winTop = "top=" + windowTop, winLoc = "location=" + windowLocation, winMenu = "menubar=" + windowMenubar, winSts = "status=" + windowStatus, winBar = "toolbar=" + windowToolbar, winSiz = "resizable=" + windowResizable, winScrl = "scrollbars=" + windowScrollbars;
				var windowFeatures = winHt + "," + winWd + "," + winLft + "," + winTop + "," + winLoc + "," + winMenu + "," + winSts + "," + winBar + "," + winSiz + "," + winScrl;

				window.open(windowURL,windowName,windowFeatures)
}

function openPopupWindow(windowURL,windowWidth,windowHeight) {

				// Modify the values in quotation marks to control window characteristics.
				// var windowURL = "inser_URL.html";  // URL of content to display in window
				var windowName = "popup";  // Name for new window
				// var windowHeight = "300";  // Window height in pixels
				// var windowWidth = "300";  // Window width in pixels
				var windowLeft = "100";  // Window x-coordinate in pixels
				var windowTop = "200";  // Window y-coordinate in pixels
				var windowLocation = "no";  // Boolean; enables input field for entering URLs
				var windowMenubar = "no";  // Boolean; enables window Menubar
				var windowStatus = "no";  // Boolean; enables window Status line
				var windowToolbar = "no";  // Boolean; enables window Toolbar (e.g. Back, Forward buttons)
				var windowResizable = "no";  // Boolean; enables window resizing
				var windowScrollbars = "no";  // Boolean; enables window scrollbars

				// DO NOT MODIFY ANY OF THE CODE BELOW THIS LINE
				var winHt = "height=" + windowHeight, winWd = "width=" + windowWidth, winLft = "left=" + windowLeft, winTop = "top=" + windowTop, winLoc = "location=" + windowLocation, winMenu = "menubar=" + windowMenubar, winSts = "status=" + windowStatus, winBar = "toolbar=" + windowToolbar, winSiz = "resizable=" + windowResizable, winScrl = "scrollbars=" + windowScrollbars;
				var windowFeatures = winHt + "," + winWd + "," + winLft + "," + winTop + "," + winLoc + "," + winMenu + "," + winSts + "," + winBar + "," + winSiz + "," + winScrl;

				window.open(windowURL,windowName,windowFeatures)
      }

      var preloadFlag = true;
		function changeImages() {
			if (document.images && (preloadFlag == true)) {
				for (var i=0; i<changeImages.arguments.length; i+=2) {
					document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
				}
			}
		}
      function newNavImage(arg) {
        if (document.images) {
          rslt = new Image();
          rslt.src = arg;
          return rslt;
        }
      }
      function changeNavImages() {
			  if (document.images && (preloadFlag == true)) {
				  for (var i=0; i<changeNavImages.arguments.length; i+=2) {
					  document[changeNavImages.arguments[i]].src = changeNavImages.arguments[i+1];
				  }
			  }
		  }
      function MM_openBrWindow(theURL,winName,features) { //v2.0
        window.open(theURL,winName,features);
      }
