function showBox(imageMapRegion) {
	switch(imageMapRegion) {
		case 'antique':
			blurb		= '<strong>Craft fairs, flea markets, and antique shows and stores:<\/strong><br>Sometimes you can find a bargain here, but do your research first so you can recognize fair prices and problem coins.&nbsp; Keep searching, but carefully.';
			break;
		case 'attic':
			blurb		= '<strong>Your home storage areas:<\/strong><br>Old coins sometimes hide in old trunks and boxes in attics, closets, and basements.&nbsp; Again, get a parent\'s help.';
			break;
		case 'auction':
			blurb		= '<strong>Auctions:<\/strong><br>Auctions&mdash;and some are online&mdash;are a good place to find rare coins with your parent\'s help, but they\'re also a good place to bid higher than the market value.';
			break;
		case 'bank':
			blurb		= '<strong>Banks:<\/strong><br>Use paper money to buy rolls of coins from the bank, then search through them for the coins you need.&nbsp; Some banks sell special (uncirculated) sets as they\'re released, too.';
			break;
		case 'beach':
			blurb		= '<strong>Beaches:<\/strong><br>Use a metal detector to find buried coins at the beach.';
			break;
		case 'dealer':
			blurb		= '<strong>Dealers:<\/strong><br> Search the yellow pages, coin collecting magazines, and the Internet to find dealers who sell collectible coins.';
			break;
		case 'desk':
			blurb		= '<strong>Your own house:<\/strong><br>Check your pockets, purse or wallet, and desk drawers, and ask a parent to help you check other places, like under the sofa cushions.';
			break;
		case 'expo':
			blurb		= '<strong>Coin shows:<\/strong><br>Have someone bring you to visit local coin shows, where you can shop for old and unusual coins from competing dealers.';
			break;
		case 'house':
			blurb		= '<strong>Friends\' and relatives\' houses:<\/strong><br>If they would like to help with your collection, ask them to look in the same places in their homes for the kind of coins you\'re collecting.';
			break;
		case 'mailbox':
			blurb		= '<strong>Mail:<\/strong><br>Look in numismatic magazines to find ads for dealers who sell by mail.&nbsp; (Make sure the one you pick has a good return policy.)';
			break;
		case 'phone':
			blurb		= '<strong>Mint:<\/strong><br>Buy new issues of coins and medals directly from the United States Mint&mdash;online or by phone with a credit card, or by mail.&nbsp; Many dealers also sell over the Internet.&nbsp; Before you make any purchase, get advice from adults you know and trust, and together, check out the United States Mint\'s consumer awareness pages.';
			break;
		case 'soda':
			blurb		= '<strong>Machines:<\/strong><br>Put some quarters in a vending machine and hit the &quot;return&quot; button.&nbsp; You\'ll usually get different coins back than the ones you put in.';
			break;
		case 'young':
			blurb		= '<strong>Trades:<\/strong><br>When you get more than one of the same coin, keep the ones you like the best and use the extras to trade with the new numismatic friends you make.&nbsp; Coin clubs are a good way to meet other collectors you can trade with.';
			break;
	}
	var popup			= document.getElementById('popupCoinTown');
	popup.innerHTML		= blurb;
	popup.style.display	= 'block';
}

function hideBox() {
	var popup			= document.getElementById('popupCoinTown');
	popup.style.display	= 'none';
}

