function CheckPage2C()
{
f1=f2=f3=f4=f5=f6=f7=f8=f9=f10=f11=f12=f13=f14=f15=f16=f17=f18=f19=f20=f21=true;

f1=CheckBlank('BaseIncomeRow','mbaseincome');
f2=CheckBlank('CurrentERow','ce_name');
f3=CheckBlank('CurrentAddressRow','ce_street');
f4=CheckBlank('CurrentECityRow','ce_city');
f5=CheckDropList('CurrentEStateRow','ce_state','State');
f6=CheckBlank('CurrentEZipRow','ce_zip');
f7=CheckBlank('CurrentEPositionRow','ce_position');
f8=CheckBlank('CurrentEPhoneRow','ce_areacode');
f9=CheckBlank('CurrentEPhoneRow','ce_pnum1');
f10=CheckBlank('CurrentEPhoneRow','ce_pnum2');
f11=CheckBlank('CurrentEYearRow','ce_yearwork');
f12=CheckBlank('CurrentEJobRow','ce_yearjob');
f13=CheckDoubleSwitchBox('CurrentSelf','ce_yselfemployed','ce_nselfemployed');
if(!f1 || !f2 || !f3 || !f4 || !f5 || !f6 || !f6 || !f7 || !f8 || !f9 || !f10 || !f11 || !f12 || !f13 || !f14 || !f15 || !f16 || !f17 || !f18 || !f19 || !f20 || !f21)
	{
		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
	
}
