function reg_full_dec()
{
	 if(!document.register.thameslandlord[0].checked && !document.register.thameslandlord[1].checked)
        {
                alert("You have to answer Yes or No for if you are a Thames Gateway Landlord");
                return false;
        }
        if(!document.register.coc.checked)
        {
                alert("You have to Confirm with our Code of Conduct. Please tick respective checkbox.");
                return false;
        }
        if(!document.register.fit.checked)
        {
                alert("You have to satisfy Fit and Proper Person Condition. Please tick respective checkbox.");
                return false;
        }
        if(!document.register.reg_true.checked)
        {
                alert("You have to confirm that all information provided on this site is true and accurate. Please tick respective checkbox.");
                return false;
        }
	if(document.register.thameslandlord[0].checked)
	{
		if(!document.register.reg_thames.checked)
		{
			alert("If you are a Thames Gateway Landlord you have to conform to the conditions by ticking the appropriate checkbox.");
			return false;
		}
	}
}

