// Original script from <http://www.dynamicdrive.com/>
// Cleaned up by Michael Zajac <michael@zajac.ca>

// framebreaker
if( top != self ) { top.location = self.location; }

// link descriptions
var linktext = new Array(
	"Agastache",
	"Aster",
	"Borage",
	"Calendula",
	"Centaurea",
	"Cosmos",
	"Echinacea",
	"Hesperis",
	"Lupine",
	"Marigold",
	"Mexican Sunflower",
	"Parsley",
	"Red Clover",
	"Violet",
	"White Clover",
	"Yarrow",
	"Admiral",
	"Black Swallowtail",
	"Cabbage White",
	"Monarch",
	"Mourning Cloak",
	"Red Admiral",
	"Silver Skipper",
	"Silvery Blue",
	"Skipper",
	"Sulphur",
	"Tawny Crescent",
	"Tiger Swallowtail",
	"Vanessa"	
);

var ns6 = document.getElementById && !document.all;
var ie = document.all;

function showText( thetext, whichdiv ) {
	if (ie) 
		eval( "document.all." + whichdiv ).innerHTML = "&nbsp;&nbsp;<em>" + linktext[thetext] + "</em>";
	else if (ns6) 
		document.getElementById(whichdiv).innerHTML = "&nbsp;&nbsp;<em>" + linktext[thetext] + "</em>";
}

function reset( whichdiv ) {
	if (ie) 
		eval( "document.all." + whichdiv ).innerHTML = '&nbsp;';
	else if (ns6) 
		document.getElementById( whichdiv ).innerHTML = '&nbsp;';
}
