
function validate_form_1050(){
    reset_input("form_1050");
    with (document.form_1050){
            
        if(inputObj=document.getElementById("present_name")){
            if(present_name.value==""){
                inputError("Please enter the name of the website", inputObj);
                inputObj.focus();
                return false;
            }
        }
        if(inputObj=document.getElementById("present_url")){
            if(present_url.value==""){
                inputError("Please enter the URL of the website", inputObj);
                inputObj.focus();
                return false;
            }
        }
        if(inputObj=document.getElementById("present_description")){
            if(present_description.value==""){
                inputError("Please enter the website description", inputObj);
                inputObj.focus();
                return false;
            }
        }
        if(inputObj=document.getElementById("present_rating")){
            if(!selectBoxIsSelected("present_rating")){
                inputError("Please choose how many stars you will give to this website", inputObj);
                inputObj.focus();
                return false;
            }
        } 
        }
        var formObj=document.getElementById("form_1050");
            formObj.target="upload1050";
            return true;
    }