function ChooseCategory(Category)
{
    var Address = window.location.href;
    if(Category == null || Category == undefined)
    {
        Category = Address.substr(Address.indexOf('08_form_') + 8,Address.indexOf('.aspx') - Address.indexOf('08_form_') - 8);
    }
    if(Category != 'gen')
    {
        for(var intCount = 0;intCount < document.getElementById('ProductLists').childNodes.length;intCount++)
        {
            var receiver = document.getElementById('ProductLists').childNodes[intCount];
            if(receiver.tagName == 'SELECT')
            {
                receiver.style.display = 'none';
            }
        }
        document.getElementById('Category' + Category.toLowerCase()).style.display = 'block';
        var ProductCategories = document.getElementById('InformationRequestCategories');
        var Offset = 1;
        if(document.expando)
        {
            Offset = 0;
        }
        for(var intCount = 0; intCount < ProductCategories.childNodes[Offset].childNodes[0].childNodes.length; intCount++)
        {
            if(ProductCategories.childNodes[Offset].childNodes[0].childNodes.length > 0)
            {
                if(ProductCategories.childNodes[Offset].childNodes[0].childNodes[intCount].childNodes[0].childNodes[0].value.toLowerCase() == Category.toLowerCase())
                {
                    ProductCategories.childNodes[Offset].childNodes[0].childNodes[intCount].childNodes[0].childNodes[0].checked = true;
                }
            }
        }
    }
}