      	 <!-- Start Hide
		// =================================== // 
		var popupOneMsg="<div style='Text-align: center; Text-decoration: underline; Color: rgb(255,0,0); Font-size: 22pt'>POPUP WINDOW DEMO!</div>" +
					 "<div style='Text-align: left; Color: rgb(0,0,255); Font-size: 14pt;'>PLEASE NOTE: This Is To Demo The Javascript Popup Window Function</div>" + 
					 "<span style='Color: maroon; Text-indent: 35px;'>The following may be what the error message might say and to demo the window content. " +
					 "<br><br>Characters Like Exclamation Points(!), Double Quote(''), Number Sign(#)," +
				"Dollar Sign($), Percent Sign(%), Asterisk(*), Plus Sign(+), Colon(:), Semi-Colon(;),Tilde(~), Spaces( ) " +
				"Less Than Symbol(<), Equal Sign(=), Greater Than Symbol(>), Question Mark(?), AT Symbol(@), " +
				"Left/Opening Bracket(]), Back Slash, Right/Closing Bracket([), Caret/Circumflex(^), Underscore(_), " +
				"Small Mark(`), Left/Opening Brace({), Vertical Bar(|), Or Right/Closing Brace(}) " +
				"ARE NOT ALLOWED!" +
				"<br><br>ONLY LETTERS ''A'' TO ''Z'' UPPERCASE Or lowercase And Numbers ''0'' To ''9'' Can Be Entered!</span>" +
				"<br><br><span style='Color: rgb(0,0,255);'>Click Away To Close</span>";
		// =================================== // 
		var popupTwoMsg="<div style='Text-align: center; Text-decoration: underline; Color: rgb(255,0,0); Font-size: 14pt; Font-weight: 900; Font-family: Arial;'>Window Elements Colors!</div>" +
					 "<span style='Color: rgb(0,0,255); Text-indent: 35px; Font-weight: 700; Font-family: Arial;'>Window elements color manipulations will allow the user to change the colors of various element of the window.  " +
					 "Selecting the URL link at the left will take the user to a window were the user can manipulate the various elements of the window.  " +
					 "These elements include the seven(7) different elements of the scrollbar, background color of the window, color and width of the window and table borders.</span>" +
				"<br><br><span style='Color: rgb(0,0,255); Font-weight: 700; Font-family: Arial;'>Click Away To Close</span>";
	// =================================== // 
      var popup;
	// =================================== // 
      function initWinOneContent() {
         if (popup && !popup.isOpen) {
            var popBody = popup.document.body;
            	popBody.style.border = "solid 10px rgb(255,0,0)";
            	popBody.style.padding = "10px";
            	popBody.style.fontSize = "14pt";
            	popBody.style.textAlign = "justify";
            	popBody.style.background="mistyrose";
            	popBody.innerHTML = popupOneMsg;
         }
      }
	// =================================== // 
      function initWinTwoContent() {
         if (popup && !popup.isOpen) {
            var popBody = popup.document.body;
            	popBody.style.border = "solid 4px rgb(169,169,169)";
            	popBody.style.padding = "10px";
            	popBody.style.fontSize = "10pt";
            	popBody.style.textAlign = "justify";
            	popBody.style.background="rgb(238,238,238)";
            	popBody.innerHTML = popupTwoMsg;
         }
      }
	// =================================== // 
      function openPopupWinDemo() {
		if (window.screen) {
			var popupUserScrWidth = screen.availWidth;
			var popupUserScrHeight = screen.availHeight;
		} else {  // else set the following defaults
			varpopupUserScrWidth = 640;
			var popupUserScrHeight = 480;
		}
		var popupWinWidthSize=(popupUserScrWidth/2);  // figure out HALF the Users screen WIDTH
		var popupWinHeightSize=( popupUserScrHeight/2);  // figure out HALF the Users screen HEIGHT
		// =========
    		var popupWinXLoc = (popupUserScrWidth/2) - (popupUserScrWidth/4); // figure out the upper left corner
    		var popupWinYLoc = (popupUserScrHeight/2) - (popupUserScrHeight/4); // so the window is centered
		// =========
         popup = window.createPopup();
         initWinOneContent();
	    // X-Col,Y-Row,Width,Height.document_object.body // 
	    // IMPORTANT: This location is relevant to the window the popup opens in and not the over all user screen size // 
	    // Left-Col,Top-Row,Width,Height.document_object.body // 
         popup.show(popupWinXLoc, popupWinYLoc, popupWinWidthSize, popupWinHeightSize, document.body);
      }
	// =================================== // 
      function openPopupWinTwoDemo() {
		if (window.screen) {
			var popupUserScrWidth = screen.availWidth;
			var popupUserScrHeight = screen.availHeight;
		} else {  // else set the following defaults
			varpopupUserScrWidth = 640;
			var popupUserScrHeight = 480;
		}
		var popupWinWidthSize=(popupUserScrWidth/4);  // figure out HALF the Users screen WIDTH
		var popupWinHeightSize=( popupUserScrHeight/4);  // figure out HALF the Users screen HEIGHT
		// =========
    		var popupWinXLoc = (popupUserScrWidth/2) - (popupUserScrWidth/8); // figure out the upper left corner
    		var popupWinYLoc = (popupUserScrHeight/2) - (popupUserScrHeight/4); // so the window is centered
		// =========
         popup = window.createPopup();
         initWinTwoContent();
	    // X-Col,Y-Row,Width,Height.document_object.body // 
	    // IMPORTANT: This location is relevant to the window the popup opens in and not the over all user screen size // 
	    // Left-Col,Top-Row,Width,Height.document_object.body // 
         popup.show(popupWinXLoc, popupWinYLoc, popupWinWidthSize, popupWinHeightSize, document.body);
      }
	// ============================================ // 
	// END Hide -->
