var DateBox = {

    SelectDate : function(oSender, iUnix)
    {
        // location.href = "/";
        var href = location.href;
        if(location.href.indexOf("?") > -1)
        {
            href = location.href.substring(0, location.href.indexOf("?"));
        }

        location.href = href + "?date=" + iUnix;

        return;
    }

}