		var leftX = -800;
		var leftY = -700;
		var leftZ = -600;
		
		var heightXmax = 112;
		var heightYmax = 176;
		var heightZmax = 128;		
		
		var heightX = 20;
		var heightY = heightX;
		var heightZ = heightX;
		
		var heightXmin = 20;
		var heightYmin = heightXmin;
		var heightZmin = heightXmin;		
		
		var shrinkYesX = 0;
		var expandYesX = 1;
		var timerID = "";
		var numbers = "1234567890.";



		
		
		function increaseBodyFontSize(sz){
		   var num = "";
		   var hgt = "";
		   var wdt = "";
		   var wdt2 = "";
		   var size = document.body.style.fontSize;
		  ///alert("size = " + size);
		
		  for(var i = 0; i < size.length; i++){
		    for(var j = 0; j < numbers.length; j++){
		     if(size.charAt(i)==numbers.charAt(j)){
		       num += size.charAt(i);
		     }
		     
		    }
		  }// i for
		/// alert("num 1 = " + num);
		  document.body.style.fontSize = size;
		   num =  parseFloat(num) + 1;
		//	alert("num 2 = " + num);

			  
		var hght = document.getElementById('content').style.height;
		var wdth = document.getElementById('content').style.width;
		var wdth2 = document.getElementById('wrtn1').style.width;
		
		//alert("wdth2 = " + wdth2);
		//alert("hght = " + hght);
		
		  for(var i = 0; i < hght.length; i++){
		    for(var j = 0; j < numbers.length; j++){
		     if(hght.charAt(i)==numbers.charAt(j)){
		       hgt += hght.charAt(i);
		     }
		     
		    }
		  }// i for
		  
		  for(var i = 0; i < wdth.length; i++){
		    for(var j = 0; j < numbers.length; j++){
		     if(wdth.charAt(i)==numbers.charAt(j)){
		       wdt += wdth.charAt(i);
		     }
		     
		    }
		  }// i for		
		  
		for(var i = 0; i < wdth2.length; i++){
		    for(var j = 0; j < numbers.length; j++){
		     if(wdth2.charAt(i)==numbers.charAt(j)){
		       wdt2 += wdth2.charAt(i);
		     }
		     
		    }
		  }// i for			    
		  
		  
		   hgt = parseFloat(hght) + 96;	
		// alert("hgt = " + hgt);  
		   wdt = parseFloat(wdth) + 60;		
		//  alert("wdt = " + wdt);  
		   wdt2 = parseFloat(wdt2) + 60;		
		// alert("wdt2 = " + wdt2);
		// alert("hgt = " + hgt);
		 
		if (num <= 13){
		  document.body.style.fontSize = num;
		 } else if(hgt < 600){
		  document.getElementById('content').style.height = hgt + "px"; 		   
		  document.getElementById('content').style.width = wdt + "px"; 
		  for(var i = 1; i <= sz; i++){
			document.getElementById('wrtn'+i).style.width = wdt2 + "px"; 
		  }
		  document.body.style.fontSize = num;
		 } 

		}
		
		
		
		
		
		
		/*************************/
		// decrease font size
		/*************************/
		function decreaseBodyFontSize(sz){
		   var num = "";
		   var hgt = "";
		   var wdt = "";
		   var wdt2 = "";
		   var size = document.body.style.fontSize;
			// alert("size = " + size);
		
		  for(var i = 0; i < size.length; i++){
		    for(var j = 0; j < numbers.length; j++){
		     if(size.charAt(i)==numbers.charAt(j)){
		       num += size.charAt(i);
		     }
		     
		    }
		  }// i for
		  
		  document.body.style.fontSize = size;
		  num =  parseFloat(num) - 1;


			  
		var hght = document.getElementById('content').style.height;
		var wdth = document.getElementById('content').style.width;
		var wdth2 = document.getElementById('wrtn1').style.width;
		//alert("hght = " + hght);
		
		for(var i = 0; i < wdth.length; i++){
		    for(var j = 0; j < numbers.length; j++){
		     if(wdth.charAt(i)==numbers.charAt(j)){
		       wdt += wdth.charAt(i);
		     }
		     
		    }
		  }// i for		
		  
		for(var i = 0; i < wdth2.length; i++){
		    for(var j = 0; j < numbers.length; j++){
		     if(wdth2.charAt(i)==numbers.charAt(j)){
		       wdt2 += wdth2.charAt(i);
		     }
		     
		    }
		  }// i for		    
		  
		  
		   hgt = parseFloat(hght) - 96;	
		   wdt = parseFloat(wdth) - 60;	
		   wdt2 = parseFloat(wdth2) - 60;	  
		  //alert("hgt = " + hgt);
		if (num >=12){
		  document.body.style.fontSize = num;
		 } /*else if(hgt >= 419){
		  document.getElementById('content').style.height = hgt + "px"; 		   
		  document.getElementById('content').style.width = wdt + "px"; 
		  for(var i = 1; i <= sz; i++){
			document.getElementById('wrtn'+i).style.width = wdt2 + "px"; 
		  }
		  document.body.style.fontSize = num;
		 }*/
		/*
		if (num >=12){
		  document.body.style.fontSize = num;
		 } else if(hgt > 600){
		  document.getElementById('content').style.height = hgt + "px"; 		   
		  document.getElementById('content').style.width = wdt + "px"; 
		  for(var i = 1; i <= sz; i++){
			document.getElementById('wrtn'+i).style.width = wdt2 + "px"; 
		  }
		  document.body.style.fontSize = num;
		 }  
		 */
		}	// end function	








		
		function setNavi(){
			var x = 1;
				while (document.getElementById('navi'+x)!= null){
				document.getElementById('navi'+x).style.fontWeight = "bold";
				x++;
				}	
		}	
		
		function setContentHgtDiv(){
			var winhgt = screen.availHeight;
			var x = 1;
			winhgt = Math.round(winhgt * .555);
			// alert("winhgt = " + winhgt + " | parseFloat(document.getElementById('content').style.height) " + parseFloat(document.getElementById('content').style.height));
			if(winhgt > parseFloat(document.getElementById('content').style.height)){
			    // alert("winhgt = " + winhgt + " | parseFloat(document.getElementById('content').style.height) " + parseFloat(document.getElementById('content').style.height));
				document.getElementById('locnav').style.height = winhgt;
				document.getElementById('content').style.height = winhgt;
				while (document.getElementById('wrtn'+x)!= null){
				
				
				document.getElementById('wrtn'+x).style.height = winhgt;
				//alert("x = " + x);
				x++;
				}
			}
		}
		
		function showDivs(x){
		 setContentHgtDiv();
		 setNavi();
		
		 if(x != 3){
			if(leftX<32){
			leftX+=10;
			if(leftX>32){
			 leftX=32;
			}
			document.getElementById('asstprog').style.left = leftX + "px";
				if(leftY<224){
					leftY+=14;
					document.getElementById('infonav').style.left = leftY + "px";				 
				} else {
				    leftY=224;
				    document.getElementById('infonav').style.left = leftY + "px";
				}
				
				if(leftZ<416){
					leftZ+=16;
					document.getElementById('actnav').style.left = leftZ + "px";				 
				} else {
				    leftZ=416;
				    document.getElementById('actnav').style.left = leftZ + "px";
				}				
			timerID = window.setTimeout("showDivs("+x+")", 1);
			} else {
			leftX==32;
			document.getElementById('asstprog').style.left = leftX + "px";
			if(x==1){
				raiseDivNavs();
			}
			clearTimer(timerID);			
			}
		 } //end != 3
		}// end function
		
	


		

		
		var lowerDivs = 0;
		
		function raiseDivNavs(){
		  if(lowerDivs<4){
				if((heightX<heightXmax)){
					heightX+=6;
					if(heightX > heightXmax){
						heightX = heightXmax;
					}
					document.getElementById('asstprog').style.height = heightX + "px";	
					if(heightX == heightXmax){
						document.getElementById('asstprogx').style.visibility = "visible";
						document.getElementById('asstprog').style.visibility = "hidden";
						lowerDivs++;
					}	 
					timerID = window.setTimeout("raiseDivNavs()", 1);
				} else if(heightY<heightYmax){
					heightY+=6;
					if(heightY >heightYmax){
						heightY = heightYmax;
					}
					document.getElementById('infonav').style.height = heightY + "px";
					if(heightY == heightYmax){
					    document.getElementById('infonav').style.visibility = "hidden";
						document.getElementById('infonavx').style.visibility = "visible";
						lowerDivs++;
					}			 
					timerID = window.setTimeout("raiseDivNavs()", 1);
				} else if((heightZ<heightZmax)){
					heightZ+=6;
					if(heightZ >heightZmax){
						heightZ = heightZmax;
					}
					document.getElementById('actnav').style.height = heightZ + "px";
					if(heightZ == heightZmax){
						document.getElementById('actnavx').style.visibility = "visible";
						document.getElementById('actnav').style.visibility = "hidden";
						lowerDivs++;
					}	
				} 
			   
				if(lowerDivs==2){	
			  		timerID = window.setTimeout("raiseDivNavs()", 1);
			  	}
			  
				if (lowerDivs==3){
				document.getElementById('actnavx').style.visibility = "visible";
				document.getElementById('actnav').style.visibility = "hidden";
				document.getElementById('infonav').style.visibility = "hidden";
				document.getElementById('infonavx').style.visibility = "visible";
				document.getElementById('asstprogx').style.visibility = "visible";
				document.getElementById('asstprog').style.visibility = "hidden";						
					lowerDivs++;   
					timerID = setTimeout("raiseDivNavs()", 500);
					
				}
			} else if (lowerDivs==4){
					lowerDivs++;   
					timerID = setTimeout("raiseDivNavs()", 500);			
			} else if (lowerDivs==5){
			    document.getElementById('actnavx').style.visibility = "hidden";
				document.getElementById('actnav').style.visibility = "visible";
				document.getElementById('infonav').style.visibility = "visible";
				document.getElementById('infonavx').style.visibility = "hidden";
				document.getElementById('asstprogx').style.visibility = "hidden";	
				document.getElementById('asstprog').style.visibility = "visible";	
				heightX-=4;
				heightY-=4;
				heightZ-=4;
			  
				if(heightY<heightYmin){
					heightY = heightYmin;
					document.getElementById('infonav').style.height = heightY + "px";
				} else {
					document.getElementById('infonav').style.height = heightY + "px";
				}
			  
				if(heightZ<heightZmin){
					heightZ = heightYmin;
					document.getElementById('actnav').style.height = heightZ + "px";
				} else {
					document.getElementById('actnav').style.height = heightZ + "px";
				}
			  
				if(heightX<heightXmin){
					heightX = heightXmin;
					document.getElementById('asstprog').style.height = heightX + "px";
					timerID = window.setTimeout("raiseDivNavs()", 1);
				} else {
					document.getElementById('asstprog').style.height = heightX + "px";
					timerID = window.setTimeout("raiseDivNavs()", 1);
				} // if(heightX<heightXmin){
			  	
			  	if(heightX==heightXmin){
			  	 clearTimeout(timerID);
			  	}
			   
			 } // if(lowerDivs==4){
			
			 
			
						

		}// END FUNCTION
		

		
		
	/*	
    function update(n) {
        for(var i = 0; i &lt; n; i++) {
            alert("n = " + n);
            sleep(1000);
        }
        return n;
    }
    
    var future = spawn("update(10)");
    */
			
				
		function shrinkDiv1(){
			// alert("heightX 1 = " +heightX + " | heightXmin = " + heightXmin);
			
			document.getElementById('asstprogx').style.visibility = "hidden";
			document.getElementById('asstprog').style.visibility = "visible";
			
			for(heightX; heightX>heightXmin; heightX--){
			 document.getElementById('asstprog').style.height = heightX + "px";
		    }

			
			 //alert("heightX 2 = " +heightX);
		
			
		}// end function
		
		function shrinkDiv2(){
			document.getElementById('infonavx').style.visibility = "hidden";
			document.getElementById('infonav').style.visibility = "visible";
			
			for(heightY; heightY>heightYmin; heightY--){
			 document.getElementById('infonav').style.height = heightY + "px";
		    }

		}// end function	
		
		function shrinkDiv3(){
			document.getElementById('actnavx').style.visibility = "hidden";
			document.getElementById('actnav').style.visibility = "visible";
			
			for(heightZ; heightZ>heightZmin; heightZ--){
			 document.getElementById('actnav').style.height = heightZ + "px";
		    }

		}// end function			
		

		
		function expandDiv1() {
			 for(heightX; heightX < heightXmax; heightX++){
				document.getElementById('asstprog').style.height = heightX + "px";
			  }	
			 document.getElementById('asstprog').style.visibility = "hidden";
			 document.getElementById('asstprogx').style.visibility = "visible";
		}// end function	
		
		function expandDiv2() {
			 for(heightY; heightY < heightYmax; heightY++){
				document.getElementById('infonav').style.height = heightY + "px";
			  }	
			 document.getElementById('infonav').style.visibility = "hidden";
			 document.getElementById('infonavx').style.visibility = "visible";
		}// end function
		
		function expandDiv3() {
			 for(heightZ; heightZ < heightZmax; heightZ++){
				document.getElementById('actnav').style.height = heightZ + "px";
			  }	
			 document.getElementById('actnav').style.visibility = "hidden";
			 document.getElementById('actnavx').style.visibility = "visible";
		}// end function				
		
		function changeSize1(x){
		 //alert("x = " + x + " | heightX = " + heightX);
		 
		  if(heightX==heightXmin && x==0){
				expandDiv1();
							
		  } else if(heightX==heightXmax && x==1){
				shrinkDiv1();	
		  }
		 
		}// end function
		
		function changeSize2(x){
		 //alert("x = " + x + " | heightX = " + heightX);
		 
		  if(heightY==heightYmin && x==0){
				expandDiv2();
							
		  } else if(heightY==heightYmax && x==1){
				shrinkDiv2();	
		  }
		 
		}// end function
		
		function changeSize3(x){
		 //alert("x = " + x + " | heightX = " + heightX);
		 
		  if(heightZ==heightZmin && x==0){
				expandDiv3();
							
		  } else if(heightZ==heightZmax && x==1){
				shrinkDiv3();	
		  }
		 
		}// end function	
		
		function changeBorderColor(elem, bgcolor, bordcolor, color){
			elem.style.borderColor = bordcolor;
			elem.style.backgroundColor = bgcolor;
			elem.style.color = color;	  
		}	
		
		function changeBorderColor2(elem, feedcolor, fontcolor){
			document.getElementById(elem).style.borderColor = feedcolor;
			document.getElementById('line').style.borderBottomColor = feedcolor; 
			document.getElementById('tagline').style.color = fontcolor; 
			 
		}						


		function homelink(){
		 var hl = "<span style=\"font-size:1.4em;font-weight:bold;color:#336;\"><a href=\"http://www.cubenergysaver.com\" class=\"blue\" style=\"font-weight:bold;\" target=\"_blank\">CUB Energy Saver</a></span><br>";
		 return hl;
		}
		function wrtnShow(cnt, div){
		    
			for(var i = 1; i <= cnt; i++){
			 //alert("i = " + i);
			 var name = "wrtn" + i;
			 if(i == div){
			  document.getElementById(name).style.zIndex = cnt;
			  document.getElementById(name).style.visibility = "visible";
			 } else {
			  var xNeg = i*-1;
			  document.getElementById(name).style.zIndex = xNeg;
			  document.getElementById(name).style.visibility = "hidden";
			 }
			}
		}
		
		function additionalHelp(){
		var m = "";
		m += "<img src=\"images/helpEE.png\" style=\"float:right;margin-left:24px;margin-bottom:8px;\">";
		m += "<div style=\"font-weight:bold;font-size:1.2em;color:#D04204;margin-bottom:8px;\">Additional Information</div>";
		
		m += "If you have any additional questions about these programs, please call CUB, <b>1-800-669-5556</b>, ";
		m += "and ask for <a href=\"mailto:rdevens@citizensutilityboard.org\" class=\"blue\" style=\"font-weight:bold;\">Rebecca Devens</a>, environmental programs coordinator, or <a href=\"mailto:cchristensen@citizensutilityboard.org\" class=\"blue\" style=\"font-weight:bold;\">Celia ";
		m += "Christensen</a>, environmental outreach coordinator. CUB works hard to maintain the ";
		m += "accuracy and timeliness of this information, but programs often change and/or ";
		m += "run out of money. CUB is not responsible for the administration of any of the ";
		m += "programs described in this fact sheet. If you are having trouble applying for ";
		m += "or receiving benefits from any of the programs described above, please contact ";
		m += "the administrator of that program. Please notify CUB if you find any ";
		m += "inaccuracies&#160;here.";
		return m;
		}
		
		var aryCounty = new Array();
		aryCounty[0] = "Select a county from the drop-down menu to the left.<br>";
		aryCounty[1] = "Adams <br>Two Rivers Regional Council of Public Officials <br>217-224-8171<br>";
			aryCounty[2] = "Alexander<br>Shawnee Development Council, Inc. <br>618-734-0535<br>";
			aryCounty[3] = "Bond<br>BCMW Community Services, Inc.<br>618-664-3309<br>";
			aryCounty[4] = "Boone <br>Rockford Human Services Department<br>815-987-5782<br>";
			aryCounty[5] = "Brown <br>Two Rivers Regional Council of Public Officials<br>217-773-3141<br>";
			aryCounty[6] = "Bureau<br>Tri-County Opportunities Council<br>800-225-2099 or 815-875-6064<br>";
			aryCounty[7] = "Calhoun <br>Illinois Valley Economic Development Corporation<br>618-576-2218<br>";
			aryCounty[8] = "Carroll <br>Tri-County Opportunities Council<br>815-625-7830 or 800-323-5434<br>";
			aryCounty[9] = "Cass<br>MCS Community Services<br>888-288-4413<br>";
			aryCounty[10] = "Champaign<br>Champaign County Regional Planning Commission<br>217-328-3313<br>";
			aryCounty[11] = "Christian<br>C.E.F.S. Economic Opportunity Corporation<br>217-824-4712<br>";
			aryCounty[12] = "Clark<br>Embarras River Basin Agency, Inc.<br>217-932-5272<br>";
			aryCounty[13] = "Clay <br>C.E.F.S. Economic Opportunity Corporation <br>618-662-4024<br>";
			aryCounty[14] = "Clinton <br>BCMW Community Services, Inc.<br>618-594-4146<br>";
			aryCounty[15] = "Coles <br>Embarras River Basin Agency, Inc.<br>217-345-4840<br>";
			aryCounty[16] = "Cook and City of Chicago<br>Community and Economic Development Assc. of Cook County, Inc. (CEDA) <br>800-571-2332 (LIHEAP) or 312-795-8998 (weatherization)<br>";
			aryCounty[17] = "Crawford <br>Embarras River Basin Agency, Inc.<br>618-544-8780<br>";
			aryCounty[18] = "Cumberland <br>Embarras River Basin Agency, Inc. <br>217-923-3599<br>";
			aryCounty[19] = "Dekalb <br>Community Contacts, Inc.<br>847-758-3835<br>";
			aryCounty[20] = "DeWitt <br>Central Illinois Economic Development Corporation<br>217-935-2455<br>";
			aryCounty[21] = "Douglas <br>Embarras River Basin Agency, Inc<br>217-253-4434<br>";
			aryCounty[22] = "DuPage <br>DuPage County Department of Human Services<br>630-407-6500<br>";
			aryCounty[23] = "Edgar <br>Embarras River Basin Agency, Inc.<br>217-465-4911<br>";
			aryCounty[24] = "Edwards <br>Wabash Area Development, Inc<br>618-445-2379<br>";
			aryCounty[25] = "Effingham <br>C.E.F.S. Economic Opportunity Corporation<br>217-347-7514<br>";
			aryCounty[26] = "Fayette <br>C.E.F.S. Economic Opportunity Corporation<br>618-283-2631<br>";
			aryCounty[27] = "Ford <br>East Central Illinois Community Action Agency<br>800-764-2555<br>";
			aryCounty[28] = "Franklin <br>Crosswalk Community Action Agency<br>618-937-3581<br>";
			aryCounty[29] = "Fulton <br>Fulton County Health Department <br>309-647-1134 ext. 245<br>";
			aryCounty[30] = "Gallatin <br>Wabash Area Development, Inc. <br>618-269-3486 <br>";
			aryCounty[31] = "Greene <br>Illinois Valley Economic Development Corporation<br>217-942-6824<br>";
			aryCounty[32] = "Grundy <br>Kendall-Grundy Community Services<br>815-941-3262<br>";
			aryCounty[33] = "Hamilton <br>Wabash Area Development, Inc.<br>618-643-2161<br>";
			aryCounty[34] = "Hancock <br>Western Illinois Regional Council<br>309-837-2997<br>";
			aryCounty[35] = "Hardin <br>Shawnee Development Council<br>618-287-7071<br>";
			aryCounty[36] = "Henderson <br>Western Illinois Regional Council<br>309-837-2997<br>";
			aryCounty[37] = "Henry <br>Project NOW, Inc. <br>309-852-4565<br>";
			aryCounty[38] = "Iroquois <br>East Central Illinois Community Action Agency<br>815-265-4685<br>";
			aryCounty[39] = "Jackson <br>Western Egyptian Economic Opportunity Council<br>618-684-3341<br>";
			aryCounty[40] = "Jasper <br>Embarras River Basin Agency, Inc.<br>618-783-3987<br>";
			aryCounty[41] = "Jefferson <br>Crosswalk Community Action Agency<br>618-937-3581<br>";
			aryCounty[42] = "Jersey <br>Illinois Valley Economic Development Corporation <br>618-498-9521<br>";
			aryCounty[43] = "JoDaviess <br>Northwestern Illinois Community Action Agency<br>800-883-1111<br>";
			aryCounty[44] = "Johnson <br>Shawnee Development Council<br>618-658-6131<br>";
			aryCounty[45] = "Kane <br>Community Contacts, Inc.<br>847-697-8800<br>";
			aryCounty[46] = "Kankakee <br>Kankakee County Community Services, Inc.<br>815-933-7883 ext. 225<br>";
			aryCounty[47] = "Kendall <br>Kendall-Grundy Community Service<br>630-553-9100<br>";
			aryCounty[48] = "Knox <br>Carver Community Action Agency<br>309-342-0158<br>";
			aryCounty[49] = "Lake <br>Community Action Partnership of Lake County <br>847-249-4330<br>";
			aryCounty[50] = "LaSalle <br>Tri-County Opportunities Council<br>815-875-6064 or 888-225-2099<br>";
			aryCounty[51] = "Lawrence <br>Embarras River Basin Agency, Inc.<br>618-943-2938 <br>";
			aryCounty[52] = "Lee <br>Tri-County Opportunities Council<br>815-625-7830 or 800-323-5434<br>";
			aryCounty[53] = "Livingston <br>Mid Central Community Action, Inc<br>815-844-3201<br>";
			aryCounty[54] = "Logan <br>Central Illinois Economic Development Corporation<br>217-732-2159<br>";
			aryCounty[55] = "Macon <br>Decatur Macon County Opportunities Corporation <br>217-428-0155<br>";
			aryCounty[56] = "Macoupin <br>Illinois Valley Economic Development Corporation <br>217-839-4431<br>";
			aryCounty[57] = "Madison <br>Madison County Community Development<br>618-692-6200 ext. 6485<br>";
			aryCounty[58] = "Marion <br>BCMW Community Services, Inc. <br>618-532-7388<br>";
			aryCounty[59] = "Marshall <br>Tri-County Opportunities Council<br>815-875-6064 or 888-225-2099<br>";
			aryCounty[60] = "Mason <br>Central Illinois Economic Development Corporation <br>309-543-6988<br>";
			aryCounty[61] = "Massac <br>Shawnee Development Council<br>618-524-2941<br>";
			aryCounty[62] = "McDonough <br>Western Illinois Regional Council<br>309-837-2997<br>";
			aryCounty[63] = "McHenry <br>McHenry County Housing Authority<br>815-338-7752<br>";
			aryCounty[64] = "McLean <br>Mid Central Community Action, Inc.<br>309-829-0691<br>";
			aryCounty[65] = "Menard <br>Central Illinois Economic Development Corporation <br>217-632-3878<br>";
			aryCounty[66] = "Mercer <br>Project NOW, Inc<br>309-582-2644<br>";
			aryCounty[67] = "Monroe <br>Western Egyptian Economic Opportunity Council<br>618-965-9733<br>";
			aryCounty[68] = "Montgomery <br>C.E.F.S. Economic Opportunity Corporation<br>217-532-5971<br>";
			aryCounty[69] = "Morgan <br>MCS Community Services<br>217-243-9404 or 1-888-288-4413<br>";
			aryCounty[70] = "Moultrie <br>C.E.F.S. Economic Opportunity Corporation<br>217-728-7721<br>";
			aryCounty[71] = "Ogle <br>Tri-County Opportunities Council<br>815-625-7830 or 800-323-5434<br>";
			aryCounty[72] = "Peoria <br>Peoria Citizens Committee for Economic Opportunity, Inc. <br>309-671-3900<br>";
			aryCounty[73] = "Perry<br>Western Egyptian Economic Opportunity Council<br>618-965-9733<br>";
			aryCounty[74] = "Piatt <br>Central Illinois Economic Development Corporation <br>217-762-2421<br>";
			aryCounty[75] = "Pike <br>Two Rivers Regional Council of Public Officials<br>217-285-5424<br>";
			aryCounty[76] = "Pope <br>Shawnee Development Council<br>618-683-2107<br>";
			aryCounty[77] = "Pulaski <br>Shawnee Development Council<br>618-745-6388<br>";
			aryCounty[78] = "Putnam <br>Tri-County Opportunities Council<br>815-875-6064 or 888-225-2099<br>";
			aryCounty[79] = "Randolph <br>Western Egyptian Economic Opportunity Council<br>618-826-3141 or 618-443-5231<br>";
			aryCounty[80] = "Richland <br>Embarras River Basin Agency, Inc. <br>618-395-2714<br>";
			aryCounty[81] = "Rock Island <br>Project NOW, Inc<br>309-793-6391<br>";
			aryCounty[82] = "Saline <br>Wabash Area Development, Inc. <br>618-252-2680<br>";
			aryCounty[83] = "Sangamon <br>Sangamon County Department of Community<br>217-535-3120 <br>";
			aryCounty[84] = "Schuyler <br>Two Rivers Regional Council of Public Officials<br>217-322-6916<br>";
			aryCounty[85] = "Scott <br>MCS Community Services<br>217-243-9404 or 888-288-4413<br>";
			aryCounty[86] = "Shelby <br>C.E.F.S. Economic Opportunity Corporation<br>217-774-4541<br>";
			aryCounty[87] = "Stark <br>Tri-County Opportunities Council<br>815-875-6064 or 888-225-2099<br>";
			aryCounty[88] = "Stephenson <br>Northwestern Illinois Community Action Agency<br>815-232-3141 or 800-883-1111<br>";
			aryCounty[89] = "St. Clair <br>St. Clair County Community Action Agency<br>618-257-9246<br>";
			aryCounty[90] = "Tazewell <br>Tazwood Community Services, Inc.<br>309-266-9941 or 309-694-4391<br>";
			aryCounty[91] = "Union <br>Shawnee Development Council <br>618-833-7431<br>";
			aryCounty[92] = "Vermilion <br>East Central Illinois Community Action Agency<br>217-443-2705<br>";
			aryCounty[93] = "Wabash <br>Wabash Area Development, Inc.<br>618-262-4151<br>";
			aryCounty[94] = "Warren <br>Western Illinois Regional Council<br>309-837-2997<br>";
			aryCounty[95] = "Washington <br>BCMW Community Services, Inc.<br>618-327-8476<br>";
			aryCounty[96] = "Wayne <br>Wabash Area Development, Inc. <br>618-842-2962<br>";
			aryCounty[97] = "White <br>Wabash Area Development, Inc.<br>618-384-5541<br>";
			aryCounty[98] = "Whiteside <br>Tri-County Opportunities Council<br>815-625-7830 or 800-323-5434<br>";
			aryCounty[99] = "Will <br>Will County Center for Community Concerns<br>815-722-0722<br>";
			aryCounty[100] = "Williamson <br>Crosswalk Community Action Agency<br>618-937-3581<br>";
			aryCounty[101] = "Winnebago <br>Rockford Human Services Department<br>815-987-5711<br>";
			aryCounty[102] = "Woodford<br>Tazwood Community Services, Inc. <br>309-266-9941 or 309-694-4391 <br>";


		
		function showCountyInfo(elem){
		  // alert("show " + );
		  document.getElementById('countyselected').innerHTML = aryCounty[elem.selectedIndex];
		}
		
		function naviBold(navi, navcnt){
			for(var i = 1; i <= navcnt; i++){
			 if(i==navi){
			  document.getElementById('navi'+i).style.fontWeight = 'bold';
			  document.getElementById('navi'+i).style.color = '#D04204';
			  document.getElementById('page'+i).style.fontWeight = 'bold';
			  document.getElementById('page'+i).style.color = '#D04204';
			 } else {
			  document.getElementById('navi'+i).style.fontWeight = 'bold';
			  document.getElementById('navi'+i).style.color = '#336';
			  document.getElementById('page'+i).style.fontWeight = 'bold';
			  document.getElementById('page'+i).style.color = '#666';
			 } // end if
			} // end for
		}
		

var cmbos= 2;
function wrtCFLCalc(){
	//alert("Inside = wertCFLCalc()");
	 brwType = navigator.appName;
	var rtnCFLCalc = "";
	var cfltop = 162;
	var cflleft = 200;
	var gih = 380;
	if(brwType == "Netscape"){
	 cfltop = 168;
	 cflleft = 204;
	 gih = 420;
	}
	rtnCFLCalc += "<div id='greenIL' name='greenIL' style='z-index:200;width:424px;height:"+gih+"px;background-color:#EED;padding:4px;position:absolute;top:"+cfltop+";left:"+cflleft+";visibility:hidden;border-bottom:groove 1px #060;'>";
	rtnCFLCalc += "			<div id='car' name='car' style='float:left;'><br>";
	//rtnCFLCalc += "				<br>";
	//rtnCFLCalc += "				<br>";
	rtnCFLCalc += "				<!-- width 240 height 380 -->";
	rtnCFLCalc += "				<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='192' height='304' id='greenIllinois' VIEWASTEXT>";
	rtnCFLCalc += "					<param name='allowScriptAccess' value='sameDomain' />";
	rtnCFLCalc += "					<param name='movie' value='greenIllinois.swf' />";
	rtnCFLCalc += "					<param name='quality' value='high' />";
	rtnCFLCalc += "					<param name='bgcolor' value='#eeeeff' />";
	rtnCFLCalc += "					<embed src='greenIllinois.swf' quality='high' bgcolor='#eeeeff' width='192' height='304' name='greenIllinois' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />";
	rtnCFLCalc += "				</object>";
	rtnCFLCalc += "				<!-- onclick='closeCar();' -->";
	rtnCFLCalc += "			</div>";
	rtnCFLCalc += "			<div style='float:right;'><a href='javascript:closeCar();' class='green'><b>close x</b></a></div>";
	rtnCFLCalc += "			<div style='float:right;width:220px;'>";
	rtnCFLCalc += "<div id='combos' name='combos' style='float:right;width:220;'>";
	rtnCFLCalc += "<div style=float:right;width:220px;background-color:#eed;color:#060;padding:6px;margin-top:4px;margin-left:6px;margin-bottom:4px;border: #666 2px groove;><a href=javascript:increaseCombo(); border=0><img src=images/greenPlus.gif align=right alt='Add another combination of lightbulbs to be replaced.'></a><a href='javascript:decreaseCombo();' border=0 ><img src=images/greenMinus.gif align=right></a><b>CFL Calculator</b><br><br>";
	rtnCFLCalc += "<span id='message3' name='message3' style=\"font-size:.9em;color:#000;\">See how energy-saving light bulbs, or CFLs, save money and the environment. Fill in the number and wattage of the traditional incandescent bulbs you’re replacing, as well as the kind of CFLs you’re replacing them with. Then estimate the average number of hours per day you will use the&#160;bulbs. </span>";
	rtnCFLCalc += "<form name='calcCFL' id='calcCFL' style='margin-bottom:-2px;margin-top:-1px;' onsubmit='updateResults();'>"; // onclick='updateResults()'
	
	if(brwType == "Netscape"){
		rtnCFLCalc += "<div style=\"width:204px;margin-top:8px;margin-bottom:4px;padding-bottom:2px;font-size:.75em;\"><span style=\"width:56px;float:left;\"># of<br>Bulbs</span><span style=\"width:80px;float:left;\">Incandescent Wattage<br></span><span style=\"width:44px;float:left;\">CFL Wattage<br></span><br></div>";
	} else {
		rtnCFLCalc += "<div style=\"width:204px;margin-top:8px;margin-bottom:4px;padding-bottom:2px;font-size:.75em;\"><span style=\"width:56px;\"># of<br>Bulbs</span><span style=\"width:80px;\">Incandescent Wattage<br></span><span style=\"width:44px;\">CFL Wattage<br></span><br></div>";
	}
	
	//rtnCFLCalc += "<br><span style='font-size:.8em;line-height:1.2em;'># Bulbs&#160;&#160;&#160;&#160;Incan. Watts&#160;&#160;CFL Watts</span>";
								
		//alert("Inside = wertCFLCalc()");						
	for(i=1; i< cmbos; i++){
		rtnCFLCalc += "<div style='align:base;margin-top:-2px;margin-bottom:-2px;'>";
		rtnCFLCalc += "<input type=\"text\" value=\"0\" id=name=\"num"+i+"\" name=\"num"+i+"\" style=\"width:48px;text-align:right;height:18px;font-size:9px;\">&#160;&#160;";
		
		if(brwType == "Netscape"){
			rtnCFLCalc += "<select id=name='incWatt"+i+"' name='incWatt"+i+"' style='width:56px;height:17px;margin-bottom:8px;'>&#160;&#160;";
		} else {
			rtnCFLCalc += "<select id=name='incWatt"+i+"' name='incWatt"+i+"' style='width:56px;height:14px;margin-bottom:8px;'>&#160;&#160;";
		}
		
		rtnCFLCalc += "<option value='100'>100</option>";
		rtnCFLCalc += "<option value='75'>75</option>";
		rtnCFLCalc += "<option value='60'>60</option>";
			rtnCFLCalc += "<option value='50'>50</option>";
			rtnCFLCalc += "</select>&#160;&#160;";
			
		
		if(brwType == "Netscape"){
			rtnCFLCalc += "<select id='cflWatt"+i+"' name='cflWatt"+i+"' style='width:56px;height:17px;margin-bottom:8px;'>";
		} else {
			rtnCFLCalc += "<select id='cflWatt"+i+"' name='cflWatt"+i+"' style='width:56px;height:14px;margin-bottom:8px;'>";
		}
			rtnCFLCalc += "<option value='28'>28</option>";
			rtnCFLCalc += "<option value='22'>22</option>";
			rtnCFLCalc += "<option value='18'>18</option>";
			rtnCFLCalc += "<option value='13'>13</option>";
 			rtnCFLCalc += "</select></div>";
	}
								
								rtnCFLCalc +=  "<input type='text' value='4' name='hours' style='text-align:right; width:48px; height:18px; font-size:9px; float:left;'>&#160;&#160;<span style=font-size:.8em;>hours per day</span>";
								rtnCFLCalc += "<input style='float:right;margin-left:104px;font-size:.9em;' type='button' onclick='updateResults()' value='Calculate'/>";
								rtnCFLCalc += "</form>";
								
								
								rtnCFLCalc += "</div>";
								
								rtnCFLCalc += "</div>";
								if(brwType =="Netscape" ){
									rtnCFLCalc += "<div id=\"mthg\" name=\"mthg\" style=\"margin-left:8px;margin-top:2px;float:right;z-index:600;font-size:.8em;\"><a href=\"http://www.citizensutilityboard.org/pdfs/GetGreen/CFLCalculatorMethodology.pdf\" class=\"green\" target=\"_blank\">methodology</a>&#160;&#160;</div>";				
								} else {
									rtnCFLCalc += "<div id=\"mthg\" name=\"mthg\" style=\"margin-left:8px;margin-top:2px;float:right;z-index:600;font-size:.8em;\"><a href=\"http://www.citizensutilityboard.org/pdfs/GetGreen/CFLCalculatorMethodology.pdf\" class=\"green\" target=\"_blank\" onmouseover=\"setDivToURL(\'mthg\', \'http://www.citizensutilityboard.org/pdfs/GetGreen/CFLCalculatorMethodology.pdf\', 200);\" onmouseout=\"hidePrvw(\'prvwURL\');stopPlay(\'prvwURL\');\" title=\"Hold mouse over spectacles to preview site or click to open.\">methodology<img src=\"http://www.citizensutilityboard.org/images/preview.gif\" border=\"0\" style=\"margin-left:8px;\"></a>&#160;&#160;</div>";				
								}
								
								
	
	//rtnCFLCalc += "<br>";
	
	//rtnCFLCalc += "				<div name='message2' id='message2' style='float:left;font-size:.9em;'></div>";
	//rtnCFLCalc += "				<br>";
	//rtnCFLCalc += "				<br>";
	//rtnCFLCalc += "				<div style='color:#060;'>";
	//rtnCFLCalc += "					<div name='anSav2' id='anSav2'>";
	//rtnCFLCalc += "						Annual Savings<br>$0.00";
	//rtnCFLCalc += "					</div>";
	//rtnCFLCalc += "					<br>";
	//rtnCFLCalc += "					<br>";
	//rtnCFLCalc += "					<div name='anCli2' id='anCli2'>";
	//rtnCFLCalc += "					Climate 0.0 lbs of C0<span style='font-size:60%;margin-bottom:-4px;vertical-align:bottom;'>2</span><br>";
	//rtnCFLCalc += "					</div>";
	//rtnCFLCalc += "					<br>";
	//rtnCFLCalc += "					<br>";
	//rtnCFLCalc += "					<div name='miles2' id='miles2'>";
	//rtnCFLCalc += "						Car miles<br>";
	//rtnCFLCalc += "						0.0";
	//rtnCFLCalc += "					</div>";
	//rtnCFLCalc += "				</div>";
	
	
	rtnCFLCalc += "			</div>";
	/*
	<div id='motp' name='motp' class="greenSubTitle"><a href="http://wip.warnerbros.com/marchofthepenguins/" class="green" target="_blank"><b>
								The March of the Penguins</b></a><a href="http://wip.warnerbros.com/marchofthepenguins/" class="green" target="_blank" onmouseover="setDivToURL('motp', 'http://wip.warnerbros.com/marchofthepenguins/');" onmouseout="hidePrvw('prvwURL');stopPlay('prvwURL');"><img src="images/preview.gif" border="0" style="margin-left:8px;" title="Hold mouse over spectacles to preview site or click to open."></a>
	*/
	
	rtnCFLCalc += "		</div>";
	


	return rtnCFLCalc;
}	// end function




		

function wrtNav(){
  var navText = "";


//navText += wrtCFLCalc();
navText += "<div id=\"tagline\" name=\"tagline\" style=\"position:absolute;right:30px;bottom:64px;font-weight:bold;font-size:10px;color:#039;z-index:50;\">Citizens Utility Board - Fighting for Illinois Consumers Since 1984</div>";
navText += "<div id=\"line\" name=\"line\" style=\"position:absolute;left:0px;bottom:60px;border-bottom:solid 2px #039;width:99%;height:4px;z-index:0;padding:2px;z-index:40;\"></div>";
navText += "<div id=\"logo\" name=\"logo\" style=\"position:absolute;bottom:12px;right:30px;text-align:right;z-index:41;\">";
navText += "<a href=\"index.html\" target=\"_blank\"><img src=\"images/smallcub1.png\" style=\"border:0px;\" title=\"Return to the Citizens Utility Board home page.\"></a>";
navText += "</div>";

/***************/

navText += "<div id=\"asstprog\" name=\"asstprog\" style=\"position:absolute;left:-800px;bottom:48px;width:172;height:"+heightXmin+"px;background-color:#CCC;border:solid 2px #039;padding:4px;padding-left:8px;font-weight:bold;font-size:.9em;color:#336;visibility:visible;z-index:40;\" onmouseover=\"changeSize1(0);\">";
navText += "<span style=\"font-size:1.4em;font-weight:bold;\"><a href=\"cublivewire_findincentives.html\" class=\"blue\" style=\"font-weight:bold;\">Find Incentives</a></span>";
navText += "</div>";


navText += "<div id=\"asstprogx\" name=\"asstprogx\" style=\"position:absolute;left:32px;bottom:48px;width:172;height:"+heightXmax+"px;background-color:#FFF;border:solid 2px #039;padding:4px;padding-left:8px;font-weight:bold;font-size:.9em;color:#336;visibility:hidden;z-index:400;\" onmouseover=\"changeSize1(0);changeBorderColor2('asstprogx', '#D04204', '#039');\" onmouseout=\"changeSize1(1);changeBorderColor2('asstprogx', '#039', '#039');\">"; // onmouseover="changeBorderColor2(this, '#FFF', '#039', '#D04204;', '#FC6;');" onmouseout="changeBorderColor2(this,'#EEE', '#666', '#666', "#039');">

/* */
navText += "<div id=\"asstprogSub\" name=\"asstprogSub\" style=\"width:160px;font-weight:bold;color:#336;border:0px;margin-top:4px;\">";
navText += "<a href=\"cublivewire_fi_lowincome.html\" class=\"bluebold\">Low income</a><br>";// cublivewire_fi_lowincome
navText += "<div style=\"margin-left:12px;margin-bottom:8px;\">";
// navText += "Consumer Rights<br>";
//navText += "<a href=\"cublivewire_assistanceprograms_lowincome_IHWAP.html\" class=\"blue\" style=\"font-weight:bold;\">Weatherization</a><br>"; // 
//navText += "<a href=\"cublivewire_assistanceprograms_lowincome_KeepWarm.html\" class=\"blue\" style=\"font-weight:bold;\">Keep Warm/Cool</a><br>"; // cublivewire_assistanceprograms_lowincome_KeepWarm.html
navText += "</div>";
navText += "<a href=\"cublivewire_fi_residential.html\" class=\"bluebold\">Residential</a><br>";// cublivewire_fi_residential

navText += "<div style=\"margin-left:12px;margin-bottom:8px;\">";
//navText += "<a href=\"cublivewire_assistanceprograms_res_ctychicago.html\" class=\"blue\" style=\"font-weight:bold;\">City of Chicago</a><br>";
//navText += "<a href=\"cublivewire_fi_coopmunis.html\" class=\"bluebold\">Co-op/Municipalities</a><br>"; //cublivewire_fi_coopmunis.html
// navText += "<div style=\"margin-left:12px;\">";
//navText += "<a href=\"cublivewire_assistanceprograms_res_ccesavers.html\" class=\"blue\" style=\"font-weight:bold;\">Cook County CNT Energy Savers</a><br>"; 
//navText += "Utility Programs";
//navText += "<div style=\"margin-left:12px;\">";
//navText += "<span style=\"color:#336;\">Utility Programs</span>";
//	navText += "<div style=\"margin-left:12px;\">";
//	navText += "<a href=\"cublivewire_assistanceprograms_res_comedfacts.html\" class=\"bluebold\">ComEd</a><br>"; 
//	navText += "<a href=\"cublivewire_assistanceprograms_res_ameren.html\" class=\"bluebold\">Ameren</a><br>";
//	navText += "<a href=\"cublivewire_fi_chicagolandngsp.html\" class=\"bluebold\">Peoples Gas</a><br>"; // cublivewire_fi_chicagolandngsp.html
//	navText += "<a href=\"cublivewire_fi_nicor.html\" class=\"bluebold\">Nicor Gas</a><br>";
//	navText += "<a href=\"cublivewire_fi_chicagolandngsp.html\" class=\"bluebold\">North Shore Gas</a><br>";
//	navText += "<a href=\"cublivewire_assistanceprograms_res_midamerican.html\" class=\"bluebold\">MidAmerican Energy</a><br>";
//	navText += "</div>";
//navText += "Statewide Programs<br>";
//	navText += "<div style=\"margin-left:12px;\">";
//	navText += "<a href=\"cublivewire_netmetering.html\" class=\"blue\" style=\"font-weight:bold;\">Net Metering</a><br>";
//	navText += "<a href=\"cublivewire_residentialrenewable.html\" class=\"bluebold\">Renewable Energy</a><br>";
//	navText += "</div>";
//navText += "<a href=\"cublivewire_assistanceprograms_res_federal.html\" class=\"bluebold\">Federal Programs</a><br>"; // cublivewire_assistanceprograms_res_federal
//navText += "</div>";
navText += "</div>";

navText += "<a href=\"cublivewire_fi_multiunit.html\" class=\"bluebold\">Multi-unit Building Owner</a><br>";  //cublivewire_fi_multiunit
navText += "<div style=\"margin-left:12px;margin-bottom:8px;\">";
//	navText += "<a href=\"cublivewire_assistanceprograms_res_ccesavers.html\" class=\"blue\" style=\"font-weight:bold;\">Cook County CNT Energy&#160;Savers</a><br>";
//	 navText += "ComEd Electric Heat and Water Customers";
navText += "</div>";
/*
navText += "<b>Commercial</b>";
navText += "<div style=\"margin-left:12px;\">";
navText += "<a href=\"cublivewire_netmetering.html\" class=\"blue\" style=\"font-weight:bold;\">Net Metering</a><br>";
navText += "Green Energy Loans";
navText += "</div>";
navText += "</div>";
*/
navText += "</div>";


navText += "<a href=\"cublivewire_fi_commercial.html\" class=\"bluebold\">Commercial</a><br>";// cublivewire_fi_commercial

navText += "<div style=\"margin-left:12px;margin-bottom:8px;\"></div>";

navText += "<a href=\"cublivewire_fi_publicsector.html\" class=\"bluebold\">Public Sector</a><br>";// cublivewire_fi_commercial

navText += "<div style=\"margin-left:12px;margin-bottom:8px;\">";
//navText += "<a href=\"cublivewire_assistanceprograms_com_ctychicago.html\" class=\"blue\" style=\"font-weight:bold;\">City of Chicago</a><br>";
// navText += "Co-op/Municipalities<br>";
//navText += "<a href=\"cublivewire_fi_com_coopmunis.html\" class=\"bluebold\">Co-op/Municipalities</a><br>";
// navText += "<div style=\"margin-left:12px;\">";
//navText += "<a href=\"cublivewire_assistanceprograms_res_ccesavers.html\" class=\"blue\" style=\"font-weight:bold;\">Cook County CNT Energy Savers</a><br>"; 
//navText += "Utility Programs";
//navText += "<div style=\"margin-left:12px;\">";
//navText += "Utility Programs";
//navText += "<div style=\"margin-left:12px;\">";
//navText += "<a href=\"cublivewire_assistanceprograms_com_comed.html\" class=\"blue\" style=\"font-weight:bold;\">ComEd</a><br>"; 
//navText += "<a href=\"cublivewire_assistanceprograms_res_ameren.html\" class=\"blue\" style=\"font-weight:bold;\">Ameren</a><br>";
//navText += "<a href=\"cublivewire_fi_chicagolandngsp.html\" class=\"bluebold\">Peoples Gas</a><br>";
//navText += "<a href=\"cublivewire_fi_nicor.html\" class=\"bluebold\">Nicor Gas</a><br>";
//navText += "<a href=\"cublivewire_fi_chicagolandngsp.html\" class=\"bluebold\">North Shore Gas</a><br>";
//navText += "<a href=\"cublivewire_assistanceprograms_res_midamerican.html\" class=\"blue\" style=\"font-weight:bold;\">MidAmerican Energy</a><br>";
//navText += "</div>";
//navText += "Statewide Programs<br>";
//navText += "<div style=\"margin-left:12px;\">";
//navText += "<a href=\"cublivewire_fi_com_sp_geloans.html\" class=\"bluebold\">Green Energy Loans</a><br>"; // cublivewire_fi_com_sp_geloans.html
//navText += "<a href=\"cublivewire_netmetering.html\" class=\"blue\" style=\"font-weight:bold;\">Net Metering</a><br>";
//navText += "<a href=\"cublivewire_residentialrenewable.html\" class=\"blue\" style=\"font-weight:bold;\">Renewable Energy</a><br>";
//navText += "<a href=\"cublivewire_sedac.html\" class=\"blue\" style=\"font-weight:bold;\">SEDAC</a><br>";

//navText += "</div>";
//navText += "<a href=\"cublivewire_assistanceprograms_res_federal.html\" class=\"bluebold\">Federal Programs</a><br>";
//navText += "</div>";
navText += "</div>";
navText += "<span style=\"font-size:1.4em;font-weight:bold;\"><a href=\"cublivewire_findincentives.html\" class=\"blue\" style=\"font-weight:bold;\">Find Incentives</a></span>";
navText += "</div>";
navText += "</div>";


/************************/

navText += "<div id=\"infonav\" name=\"infonav\" style=\"position:absolute;left:-800px;bottom:48px;height:"+heightYmin+"px;background-color:#CCC;width:172px;border:solid 2px #039;padding:4px;padding-left:8px;font-weight:bold;font-size:.9em;color:#336;z-index:41;\" onmouseover=\"changeSize2(0)\";>";
navText += "<span style=\"font-size:1.4em;font-weight:bold;\"><a href=\"cublivewire_learnmore.html\" class=\"blue\" style=\"font-weight:bold;\">Learn More</a></span>";
navText += "</div>";

navText += "<div id=\"infonavx\" name=\"infonavx\" style=\"position:absolute;left:224px;bottom:48px;height:"+heightYmax+"px;background-color:#FFF;width:172px;border:solid 2px #039;padding:4px;padding-left:8px;font-weight:bold;font-size:.9em;color:#336;visibility:hidden;z-index:401;\" onmouseover=\"changeSize2(0);changeBorderColor2('infonavx', '#D04204', '#039');\" onmouseout=\"changeSize2(1);changeBorderColor2('infonavx', '#039', '#039');\">";
/* */

navText += "<div style=\"margin-bottom:8px;\"><a href=\"cublivewire_lm_energyefficiency.html\" class=\"bluebold\">Energy Efficiency</a></div>"; // cublivewire_lm_energyefficiency
navText += "<div style=\"margin-bottom:8px;\"><a href=\"cublivewire_lm_renewableenergy.html\" class=\"bluebold\">Renewable Energy</a></div>";
navText += "<div style=\"margin-bottom:8px;\"><a href=\"cublivewire_learnmore_smartgrid.html\" class=\"blue\" style=\"font-weight:bold;\">Smart Grid</a></div>";
navText += "<div style=\"margin-bottom:8px;\"><a href=\"cublivewire_lm_savingenergyinyourhome.html\" class=\"bluebold\">Saving Energy In Your&#160;Home</a>"; // cublivewire_lm_savingenergyinyourhome.html
navText += "<div style=\"margin-left:12px;\">";
navText += "</div>";
navText += "</div>";
navText += "<div style=\"margin-bottom:8px;\"><a href=\"cublivewire_lm_energypolicy.html\" class=\"bluebold\">Energy Policy</a></div>"; // cublivewire_lm_energypolicy
navText += "<div style=\"margin-bottom:8px;\"><a href=\"cublivewire_learnmore_consumerrights.html\" class=\"blue\" style=\"font-weight:bold;\">Consumer Rights</a></div>";
navText += "<div style=\"margin-bottom:8px;\"><a href=\"cublivewire_learnmore_additionalprograms.html\" class=\"blue\" style=\"font-weight:bold;\">Additional Resources</a></b></div>";
navText += "<span style=\"font-size:1.4em;\"><a href=\"cublivewire_learnmore.html\" class=\"blue\" style=\"font-weight:bold;\">Learn More</a></span>";
navText += "</div>";


navText += "<div id=\"actnav\" name=\"actnav\" style=\"position:absolute;left:-600px;bottom:48px;width:172;height:"+heightZmin+"px;background-color:#CCC;border:solid 2px #039;padding:4px;padding-left:8px;font-weight:bold;font-size:.9em;color:#336;z-index:42;\" onmouseover=\"changeSize3(0);\">";
navText += "<span style=\"font-size:1.4em;font-weight:bold;\"><a href=\"cublivewire_getinvolved.html\" class=\"bluebold\">Get Involved</a></span></div>";
navText += "<div id=\"actnavx\" name=\"actnavx\" style=\"position:absolute;left:416px;bottom:48px;width:172;height:"+heightZmax+"px;background-color:#FFF;border:solid 2px #039;padding:4px;padding-left:8px;font-weight:bold;font-size:.9em;color:#336;z-index:402;visibility:hidden;\" onmouseover=\"changeSize3(0);changeBorderColor2('actnavx', '#D04204', '#039');\" onmouseout=\"changeSize3(1);changeBorderColor2('actnavx', '#039', '#039');\">";
/* */
navText += "<div style=\"width:160px;z-index:51;font-weight:bold;color:#336;border:0px;margin-top:8px;\">";
navText += "<div style=\"margin-bottom:8px;\"><a href=\"cublivewire_gi_events.html\" class=\"blue\" style=\"font-weight:bold;\">Events</a></div>";
navText += "<div style=\"margin-bottom:8px;\"><a href=\"cublivewire_gi_kidseducators.html\" class=\"blue\" style=\"font-weight:bold;\">For Kids and Educators</a></div>";// 
navText += "<div style=\"margin-bottom:8px;\"><a href=\"cublivewire_gi_takeaction.html\" class=\"bluebold\">Take Action</a></div>";
navText += "<div style=\"margin-bottom:8px;\"><a href=\"https://p2.secure.hostingprod.com/@citizensutilityboard.org/ssl/getgreenPledge.php\" class=\"blue\" target=\"_blank\" style=\"font-weight:bold;\">Pledge to be Green</a></div>";
navText += "<div style=\"margin-bottom:8px;\"><a href=\"http://cerf.convio.net/donate\" class=\"blue\" target=\"_blank\" style=\"font-weight:bold;\">Donate</a></div>";
navText += "<div>";
navText += "<span style=\"font-size:1.4em;font-weight:bold;\"><a href=\"cublivewire_getinvolved.html\" class=\"blue\" style=\"font-weight:bold;\">Get Involved</a></span>";

navText += "</div>";
navText += "</div>";
navText += "</div>";


navText += "</div>";
return navText;
}



function openToPage(url, pgs, pg){
    window.location = url;
    alert("opened");
    wrtnShow(pgs, pg);
    naviBold(pg, pgs);
}

function insertContent(cntNamed){
var txt = "";
if(cnt==""){
	txt = "";
}
return txt;
}

function changeRightRollOver(vis, srt, cnt){
	for(i=srt; i<=cnt; i++){
		if(i==vis){
			document.getElementById('rrTitle'+i).style.color="#D04204";
			document.getElementById('rr'+i).style.borderColor="#D04204";
			document.getElementById('rr'+i).style.visibility='visible';

		} else {
			document.getElementById('rr'+i).style.visibility='hidden';
		}
	}
	
	elem.style.borderColor = bordcolor;
}

function changeRightRollOut(vis, srt, cnt){
	for(i=srt; i<=cnt; i++){
		if(i==vis){
			document.getElementById('rrTitle'+i).style.color="#666";
			document.getElementById('rr'+i).style.borderColor="#666";
			document.getElementById('rr'+i).style.visibility='visible';

		} else {
			document.getElementById('rr'+i).style.visibility='hidden';
		}
	}
	
	elem.style.borderColor = bordcolor;
}