function GetFundIDByURL()
{
	var fundID = "240002";
	var href = window.location.href;
	if (null != href)
	{
		var index = href.lastIndexOf("fundid=");
		if (-1 != index)
		{
			fundID = href.substring(index + 7, index + 7 + 6);
		}
	}

	var selectItem1 = document.getElementById("FundListSelect1");
	if (null != selectItem1)
	{
		for (var i = 0; i < selectItem1.options.length; ++i)
		{
			if (selectItem1.options[i].value == fundID)
			{
				selectItem1.selectedIndex = i;
				break;
			 }
		}
	}

	return fundID;
}

function CheckFundIDInURL()
{
	var fundID = "";
	var href = window.location.href;
	if (null != href)
	{
		var index = href.lastIndexOf("fundid=");
		if (-1 != index)
		{
			fundID = href.substring(index + 7, index + 7 + 6);
		}
	}

	return (0 != fundID.length);
}
