/*
function OpenForm() {
    $("#HomePageDefaultLocation").slideDown("fast");
}
function CloseModal() {
    $("#HomePageDefaultLocation").hide();
    return false;
}

function SetDefaultLocation() {
    var tLocation = "<%=tEventLocation.ClientID%>";
    var btnEventSrch = "<%=btnEventSearch.ClientID%>";
    var sNewDefault = $("#tDefCity").val() + ", " + $("#ddlDefState").val();
    $("#" + tLocation).val(sNewDefault);
    CloseModal();
    $.cookie('DefEvtLoc', sNewDefault);

    // $.cookie('DefEvtLoc', sNewDefault, { expires: 365, path: '/', domain: 'winechatr.com', secure: false });                     

    $("#" + btnEventSrch).click();
}
*/