﻿var letter = 'ALL';

function GotoSortPageAlpha(newLetter, currentItem) {
    letter = newLetter;
    RedirectToSortPage(currentItem,letter);
}

function GetDropdownList(number) {
    var select_list_field;

    if (document.getElementById('ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder1_phhomemain_0_phsortresultmain_0_ctl00_DropDownList' + number) != null) {
        select_list_field = document.getElementById('ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder1_phhomemain_0_phsortresultmain_0_ctl00_DropDownList' + number);
    }
    if (document.getElementById('ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder1_SortPage1_ctl00_DropDownList' + number) != null) {
        select_list_field = document.getElementById('ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder1_SortPage1_ctl00_DropDownList' + number); 
    }
    if (document.getElementById('ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder1_Sort1_ctl00_DropDownList' + number) != null) {
        select_list_field = document.getElementById('ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder1_Sort1_ctl00_DropDownList' + number);
    }
    if (document.getElementById('ctl00_ContentPlaceHolder1_ctl10_ctl00_DropDownList' + number) != null) {
        select_list_field = document.getElementById('ctl00_ContentPlaceHolder1_ctl10_ctl00_DropDownList' + number);
    }
    if (document.getElementById('ctl00_ContentPlaceHolder1_SortPage1_ctl00_DropDownList' + number) != null) {
        select_list_field = document.getElementById('ctl00_ContentPlaceHolder1_SortPage1_ctl00_DropDownList' + number);
    }
    
    var select_list_selected_index = select_list_field.selectedIndex;

    var text = select_list_field.options[select_list_selected_index].text;
    return select_list_field.value;
}

function RedirectToSortPage(currentitem,label) {
    if (currentitem == 'Movies') {
        window.location = "/Movies/Sort Movies.aspx?i=Movies&q=" + label + "|" + GetDropdownList('1') + "|" + GetDropdownList('2') + "|";
    }
    if (currentitem == 'Videos') {
        window.location = "/Videos/Sort Videos.aspx?i=Videos&q=" + label + "|" + GetDropdownList('1') + "|" + GetDropdownList('2') + "|";
    }
    if (currentitem == 'Music') {
        window.location = "/Music/Sort Music.aspx?i=Music&q=" + label + "|" + GetDropdownList('1') + "|" + GetDropdownList('2') + "|";
    }
    if (currentitem == 'TV') {
        window.location = "/TV/Sort TV.aspx?i=TV&q=" + label + "|" + GetDropdownList('1') + "|" + GetDropdownList('2') + "|";
    }
    if (currentitem == 'Games') {
        window.location = "/Games/Sort Games.aspx?i=Games&q=" + label + "|" + GetDropdownList('1') + "|" + GetDropdownList('2') + "|" + GetDropdownList('3');
    }
    if (currentitem == 'UpFront') {
        window.location = "/UpFront/Sort UpFront.aspx?i=UpFront&q=" + label + "|" + GetDropdownList('1') + "|" + GetDropdownList('2') + "|";
    }
    if (currentitem == 'MovieNights') {
        window.location = "/FamilyRoom/MovieNights/Sort MovieNights.aspx?i=MovieNights&q=" + label + "|" + GetDropdownList('1') + "|" + GetDropdownList('2') + "|" + GetDropdownList('3');
    }
    if (currentitem == 'Podcast') {
        window.location = "/Podcast/Sort Podcast.aspx?i=Podcast&q=" + label + "|" + GetDropdownList('1') + "|" + GetDropdownList('2') + "|" + GetDropdownList('3');
    }
    if (currentitem == 'FamilyRoom') {
        window.location = "/FamilyRoom/Sort FamilyRoom.aspx?i=FamilyRoom&q=" + label + "|" + GetDropdownList('1') + "||";
    }
}
