﻿// JScript File

function reselectDropDownList(dropDownId, value)
{
    var dropDown = document.getElementById(dropDownId)
  
    if (dropDown != null && value != null && value != "")
    {
        dropDown.value = value;
    }
}


function clearHour()
{
    
      
    for(var i = 1; i <= 2; i++)
    {
        for(var j = 1; j <= 8; j++)
        {
            var element = document.getElementsByName("Hour_" + j + "d" + i);
            
            if (element.length > 0)
            {
                var hour = element[0];
                
                if (hour != null)
                {
                    hour.value = "";
                }
            }
        }
    }
}