function doAABrochure()
{
var fileName;
	fileName = document.frmBrochure.AABrochure.value;
	if (fileName != "")
	{
	window.open("/athleticsaustralia/docs/AA_Brochure_" + fileName + ".pdf");
	}
	else
	{
		alert("Please choose a membership category before clicking Download.");
	}
}

function doAAA4()
{
var fileName;
	fileName = document.frmA4.AAA4.value;
	
	if (fileName != "")
	{
		window.open("/athleticsaustralia/docs/AA_A4_" + fileName + ".pdf");
	}
	else
	{
		alert("Please choose a membership category before clicking Download.");
	}
}

function goALA()
{
var strMsg = "";

	strMsg = strMsg + "To access the Australian Little Athletics insurance information,  \n";
	strMsg = strMsg + "you need to first log into the password protected area on their website.\n";
	strMsg = strMsg + "\n";
	strMsg = strMsg + "To be redirected to the Australian Little Athletics site click OK.\n";
	
	if (window.confirm(strMsg))
	{
		window.location.href = "http://www.littleathletics.com.au/main.asp?Page_ID=61&directive=swapRegion&region=2632&strsearch=search";
	}

	
}

function doStateSummary()
{
var baState;
	baState = document.frmstate.baStateSummary.value;
	if (baState != "")
	{
		if ( (baState == "ACT") || (baState == "NSW") || (baState == "NT") || (baState == "SA") || (baState == "TAS") || (baState == "VIC") || (baState == "QLD") || (baState == "WA") )
		{
			window.open("/basketball/docs/BASportsInjurySummaryFlyer_" + baState + ".pdf");
		}
	}
	else
	{
		alert("Please choose your State.");
	}
}

function doStateClaim()
{
var baState;
	baState = document.frmstate.baStateClaim.value;
	if (baState != "")
	{
		if ( (baState == "ACT") || (baState == "NSW") || (baState == "NT") || (baState == "SA") || (baState == "TAS") || (baState == "VIC") || (baState == "QLD") || (baState == "WA") )
		{
			window.open("/basketball/docs/BasketballAustraliaClaimForm_" + baState + ".pdf");
		}
	}
	else
	{
		alert("Please choose your State.");
	}
}