function bolFilter(form)
{
	var choice;
	choice = form.acctselect.value;
	switch (choice)
	{
	case "A" : location.href = "AccountActivityMortgage.html";
			   break;
	case "B" : location.href = "AccountActivityLine.html";
			   break;
	case "" : alert ('Please select an account.');
			   break;	   
	default : alert ('Please select an account.');
			   break;
	}			
	return true;
	
}




