
function validate_form_1005(){
    reset_input("form_1005");
    with (document.form_1005){
            
        if(document.getElementsByName("haveSupport").length>0){
            if(!radioIsChecked("haveSupport")){
                groupError("Please choose if you currently have web support.", "haveSupport_group");
                return false;
            }
        }
        if(document.getElementsByName("supportType").length>0){
            if(!radioIsChecked("supportType")){
                groupError("Please choose what kind of support you have", "supportType_group");
                return false;
            }
        }
        if(document.getElementsByName("satisfied").length>0){
            if(!radioIsChecked("satisfied")){
                groupError("Please choose your satisfaction with the current support", "satisfied_group");
                return false;
            }
        }
        if(document.getElementsByName("newSupport").length>0){
            if(!radioIsChecked("newSupport")){
                groupError("Please choose if you are looking for web support", "newSupport_group");
                return false;
            }
        }
        if(document.getElementsByName("preferSupport").length>0){
            if(!radioIsChecked("preferSupport")){
                groupError("Please choose what kind of support you are looking for", "preferSupport_group");
                return false;
            }
        } 
        }
        var formObj=document.getElementById("form_1005");
            formObj.target="upload1005";
            return true;
    }