function CheckPage3()
{
f1=true

f1=CheckBlank('BaseIncomeRow','mbaseincome')

if(!f1)
{
		ErrorR = document.getElementById('ErrorRow')
        if(ErrorR.firstChild)
           ErrorR.removeChild(ErrorR.firstChild)
        txt = document.createTextNode("Please fix the follwing error(s)");
        ErrorR.appendChild(txt) 
		return false
}
else
return true
}