﻿
function TurnOnSelects()
{
    window.setTimeout('TurnOnSelects2()',500);
    
}

function TurnOnSelects2()
{
    //Turn all of the selects back to visible
    tagElements = document.getElementsByTagName('SELECT');
    for (var k = 0 ; k < tagElements.length; k++) {
        tagElements[k].style.visibility = 'inherit';
    }   
    
    //alert("Selects Fixed - AjaxHack");
}