	var WinOpen = 0; 
	function PopWin(num)
	{
		if (num==1)
			helpdesc = "The Gap is known for bright colors, hot styles, and low prices.";
		if (num==2)
			helpdesc = "Nordstrom's is known for higher quality and higher prices.";
		if (num==3)
			helpdesc = "Marshall's has \"off-price\" family apparel, as well as houseware.";
		if (num==4)
			helpdesc = "Ross is a discount and clearance clothing, shoes, and home accessories store.";
		if (num==5)
			helpdesc = "TJ Maxx is the largest off-price apparel retailer in the United States.";
		if (num==11)
			helpdesc = "Wal-Mart aims for huge stores and small prices on just about everything.";
		if (num==12)
			helpdesc = "Target has good products at a good value, including apparel, electronics, and toys.";
		if (num==13)
			helpdesc = "K-Mart is a venerable low-price superstore with apparel and more.";
		if (num==14)
			helpdesc = "Price Costco is a membership-based store that has bulk foods, low-price electronics, and more.";
		if (num==15)
			helpdesc = "Sam's Wholesale Club is a membership-based store from Wal Mart focusing on serving small businesses.";
		if (num==16)
			helpdesc = "Sears started as a catalog that sold nearly everything and expanded to stores that do the same.";
		if (num==21)
			helpdesc = "Crate \& Barrel has sharp home furnishings and decorations, growing slowly from their 1960s start in Chicago.";
		if (num==22)
			helpdesc = "Lowes is a large hardware, home, and garden store that has become more popular in the last few years.";
		if (num==23)
			helpdesc = "IKEA provides low-price, piece-it-together furniture from their huge warehouse stores.";
		if (num==24)
			helpdesc = "Home Depot is the original warehouse for hardware, home, and garden.";
		if (num==31)
			helpdesc = "Best Buy has electronics, computer, and the media to go inside them.";
		if (num==32)
			helpdesc = "Barnes \& Noble sells books, music, and movies.";
		if (num==33)
			helpdesc = "Borders sells books, music, and movies.";
		if (num==34)
			helpdesc = "Staples has office supplies, furniture, and anything else for the home office.";
		if (num==35)
			helpdesc = "REI is the leader in outdoor gear that is also an optional co-op.";
		if (num==36)
			helpdesc = "Guitar Center is the place for everything music at affordable prices.";
		if (num==37)
			helpdesc = "Circuit City has home electronics, computers, and car stereos.";
		if (num==38)
			helpdesc = "KayBee Toys sells toys, games, and other play things.";
		if (num==39)
			helpdesc = "Toys \"R\" Us has toys, toys, toys, and bigger toys like bikes.";
		if (num==40)
			helpdesc = "GNC has dietary supplements, workout fuel, and vitamins for a healthy lifestyle.";
		if (num==41)
			helpdesc = "To growing number of people, Starbucks means fresh-brewed premium coffee at affordable prices.";
		if (num==42)
			helpdesc = "Quality, healthy, and often exotic foods can be found at Trader Joes.";
		if (num==43)
			helpdesc = "In-N-Out Burgers is a West coast tradition. To many, it's more than just another fast food burger joint.";
		if (num==44)
			helpdesc = "Krispy Creme Doughnuts have quickly become a sought-after answer to the sweet tooth.";
		if (num==51)
			helpdesc = "If you want to watch a movie tonight, chances are good you'll find it at Blockbuster Video.";
		if (num==52)
			helpdesc = "Kinko's is your original late-night copy shop. Self-serve or full-serve, they're who you see when you need something printed.";
			
		helpdesc = helpdesc + " This is the number of 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='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='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;
				}
			}
		}

