﻿function fnChangeGenres()
{
    var s_genre = document.getElementById('brws-genre');
    var s_genre_type = s_genre.options[s_genre.selectedIndex].value;
    if (s_genre_type != "none")
         window.location.href = "../content/viewer.aspx?cid="+s_genre_type;
} 

