﻿$(document).ready(function() 
{
    CheckShipsToday();
});

function CheckShipsToday()
{
    if (document.getElementById("chkShipsToday") != null)
        document.getElementById("chkShipsToday").checked = false;
}

function ShowQuickViewOverlay(OverlayDiv)
{
    document.getElementById(OverlayDiv).style.display = "";
}

function HideQuickViewOverlay(OverlayDiv)
{
    document.getElementById(OverlayDiv).style.display = "none";
}