﻿// JScript File

function submitForm()
{
    var ddlBrandType = document.getElementById("ctl00_CP_searchBox_ddlBrandType");
    var ddlPrice = document.getElementById("ctl00_CP_searchBox_ddlPrice");
    var ddlRecordingMedia = document.getElementById("ctl00_CP_searchBox_ddlRecordMedia");
    var ddlResolution = document.getElementById("ctl00_CP_searchBox_ddlResolution");
    
    var hfBrand = document.getElementById("ctl00_CP_searchBox_hfBrand");
    var hfPrice = document.getElementById("ctl00_CP_searchBox_hfPrice");
    var hfRecordMedia = document.getElementById("ctl00_CP_searchBox_hfRecordMedia");
    var hfResolution = document.getElementById("ctl00_CP_searchBox_hfResolution");
    
    hfBrand.value = ddlBrandType.value;
    hfPrice.value = ddlPrice.value;
    hfRecordMedia.value = ddlRecordingMedia.value;
    hfResolution.value = ddlResolution.value;
    
    if(ddlBrandType.value == "")
    {
        alert('Please Choose Brand');
        ddlBrandType.focus();
        return false;
    }
    else
    {
        return true;
    }
}


