function submitCompareIsasForm() {
	var Counter = 0;

	if (document.CompareIsasForm.EasyAccessAccounts.checked)
		Counter = Counter + 1;
	if (document.CompareIsasForm.NoticeAccounts.checked)
		Counter = Counter + 2;
	if (document.CompareIsasForm.TermAccounts.checked)
		Counter = Counter + 4;
	if (document.CompareIsasForm.RegularAccounts.checked)
		Counter = Counter + 8;
	if (Counter == 0) {
		alert("Please select a type of account");
		return false;
		}
	if (isFieldValidAndFocus(document.CompareIsasForm.InvestmentAmount, 'Currency', false, 'Investment amount'))
	{
		if(document.CompareIsasForm.InvestmentAmount.value < 1)
		{
			alert("Investment amount must be at least £1");
			return false;
		}
	}
	else
		return false;
	document.CompareIsasForm.Results.value = Counter
	return true;
}
