// JavaScript Document
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
function setActiveStyleSheet(title) {
  var i, a, main;
  for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
    if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title")) {
      a.disabled = true;
      if(a.getAttribute("title") == title) a.disabled = false;
    }
  }
}
 function getFundHoldings(){
  fundID = document.holdingsSelect.fund.options[document.holdingsSelect.fund.selectedIndex].value;
  infoDate = document.holdingsSelect.date.options[document.holdingsSelect.date.selectedIndex].value;
  if(fundID!="0" && infoDate!="0"){
   url="http://web.accessor.com/ACMOnline/FundHoldings.html?fundID="+fundID+"&infoDate="+infoDate
   window.open(url);
  }
  else
   alert("Please select both a fund and a date.");
  
 }