	var WinOpen = 0; 
	function PopWin(num)
	{
		if (num==1)
			helpdesc = "The state which the city of part of."
		if (num==2)
			helpdesc = "City population, 1999, from the Census Bureau.  2000 Census figures will be available soon."
		if (num==3)
			helpdesc = "The primary county, borough, or parish for this city.  The United States has about 3,150 counties."
		if (num==4)
			helpdesc = "The MSA (Metropolitan Statistical Area) to which this city belongs.  A MSA is most often defined as a primary city and its surrounding counties.  There are 331 MSAs in the United States."
		if (num==5)
			helpdesc = "'Big city' is defined as one of the 40 largest metro areas (MSAs).  If the city is one of these 40, then the distance shown is to one of the 10 largest 'mega-cities'.  This is the number of air miles, not highway miles."
		if (num==6)
			helpdesc = "This is the Timezone for the city, and whether the city recognizes Daylight Savings Time."
		if (num==7)
			helpdesc = "To growing number of people, Starbucks means fresh-brewed premium coffee at affordable prices.  This is the number of Starbucks locations in a city, and if there are none, then the number of miles to the nearest city with one or more."
		if (WinOpen == 0)
		{
			WinOpen = 1;
	   	wnd = window.open("", "", "scrollbars=yes,menus=0,resizable=1,height=200,width=250");
		  wnd.document.write("<HEAD><TITLE>Online help</TITLE></HEAD><BODY>");
			wnd.document.write("<font face='arial,helvetica' size='-1'>"+helpdesc+"</font><br><br><table>");
			wnd.document.write("<TR><TD VALIGN='middle' ALIGN='right' WIDTH='200'><font face='arial,helvetica' size='-2'>Close Window</FONT></TD>");
			wnd.document.write("<TD VALIGN='middle' ALIGN='right' WIDTH='23'><a href='javascript:close()'><IMG SRC='http://www.bestplaces.net/html/blue_x.gif' WIDTH='18' HEIGHT='18' border='0' alt='close'></A></td>");
			wnd.document.write("</TR></table></BODY>");
		  wnd.document.close();
		} else {
			if (wnd.closed) 
				{
			wnd = window.open("", "", "scrollbars=yes,menus=1,resizable=1,height=200,width=250");
			wnd.document.write("<HEAD><TITLE>Online help</TITLE></HEAD><BODY>");
			wnd.document.write("<font face='arial,helvetica' size='-1'>"+helpdesc+"</font><br><br><table>");
			wnd.document.write("<TR><TD VALIGN='middle' ALIGN='right' WIDTH='200'><font face='arial,helvetica' size='-2'>Close Window</FONT></TD>");
			wnd.document.write("<TD VALIGN='middle' ALIGN='right' WIDTH='23'><a href='javascript:close()'><IMG SRC='http://www.bestplaces.net/html/blue_x.gif' border='0' WIDTH='18' HEIGHT='18' alt='image'></A></td>");
			wnd.document.write("</TR></table></BODY>");
			wnd.document.close();
				} else {
			wnd.close();
			WinOpen = 0;
				}
			}
		}

