function confirmRegister(s)
{
    if(document.getElementById(s).checked==false)
    {
        alert('You have to agree with the terms and conditions of WebHostReportCards for creating an account');
        return false;
    }
    else
    {            
       return true;      
    }
}

function confirmQuote(s)
{
    if(document.getElementById(s).checked==false)
    {
        alert('You have to agree with the terms and conditions of WebHostReportCards for getting a quote');
        return false;
    }
    else
    {            
       return true;      
    }
}
