// Routine to display the more info for a plant pack
var WindowPlantPackPopup;
function onPlantPackPopup()
	{
	var ThePopupLocation = "/Global/PopUp/PlantPack.html";
	var TheTop = 0, TheLeft = 0, TheWindowParams;
	if (BrowserNS4)
		{
		TheTop = window.screenY + window.outerHeight - window.innerHeight + 51;
		TheLeft = window.screenX + window.outerWidth - window.innerWidth + 117;
		}
	else if (BrowserNS6)
		{
		TheTop = window.screenY + window.outerHeight - window.innerHeight + 41;
		TheLeft = window.screenX + window.outerWidth - window.innerWidth + 119;
		}
	TheWindowParams = "toolbar=no,location=no,menubar=no,scrollbars=no,status=no,resizable=no,title=no,titlebar=no,width=542,height=380"
	TheWindowParams += ",left=" + ((screen.Width - 542) / 2)
			+ ",top=" + ((screen.Height - 380) / 2);
	if (WindowPlantPackPopup && !WindowPlantPackPopup.closed)
		WindowPlantPackPopup.location = ThePopupLocation;
	else
		WindowPlantPackPopup = window.open(ThePopupLocation,"PlantPackPopup",TheWindowParams);
	WindowPlantPackPopup.focus();
	}	

var WindowPlantSeedsPopup;
function onPlantSeedsPopup()
	{
	var ThePopupLocation = "/Global/PopUp/SeedPack.html";
	var TheTop = 0, TheLeft = 0, TheWindowParams;
	if (BrowserNS4)
		{
		TheTop = window.screenY + window.outerHeight - window.innerHeight + 51;
		TheLeft = window.screenX + window.outerWidth - window.innerWidth + 117;
		}
	else if (BrowserNS6)
		{
		TheTop = window.screenY + window.outerHeight - window.innerHeight + 41;
		TheLeft = window.screenX + window.outerWidth - window.innerWidth + 119;
		}
	TheWindowParams = "toolbar=no,location=no,menubar=no,scrollbars=yes,status=no,resizable=no,title=no,titlebar=no,width=559,height=230"
	TheWindowParams += ",left=" + ((screen.Width - 542) / 2)
			+ ",top=" + ((screen.Height - 250) / 2);
	if (WindowPlantSeedsPopup && !WindowPlantSeedsPopup.closed)
		WindowPlantSeedsPopup.location = ThePopupLocation;
	else
		WindowPlantSeedsPopup = window.open(ThePopupLocation,"PlantSeedsPopup",TheWindowParams);
	WindowPlantSeedsPopup.focus();
	}	

