function openFund(_obj) {
    document.getElementById("FundTableFrame").src = _obj + '/?FrameFund=1';
    
    var moreInfoLnk = document.getElementById("MoreInfoLink");
    moreInfoLnk.href = _obj + "?FullFund=1";
}

function setFrameHeight() {
	if (!document.getElementById("FundTableFrame").contentWindow.document.body.getElementsByTagName("TABLE")[0]) return false;
    document.getElementById("FundTableFrame").height = document.getElementById("FundTableFrame").contentWindow.document.body.getElementsByTagName("TABLE")[0].offsetHeight + 10;
	var allLinks = document.getElementById("FundTableFrame").contentWindow.document.getElementsByTagName("A");
	for (var i = 0; i < allLinks.length; i++) {
		allLinks[i].target = "_top";
	}
}
