function clickButton(e)
{
    var intKey = (window.Event) ? e.which : e.keyCode;

    if (intKey == 13)
    {
        document.getElementById('searchBar_searchButton').click();
        return false;
    }

    return true;
}

function clickButton(e, obj)
{
    var intKey = (window.Event) ? e.which : e.keyCode;
    if (intKey == 13)
    {
        obj.click();
        return false;
    }
    return true;
}
// my account area show
$(document).ready(function(){
    $("#BtnMyAccountShow").click(function () {
        if($("#myAccountAreaWrapper").is(":visible"))
            $("#myAccountAreaWrapper").hide("slow");
        else
            $("#myAccountAreaWrapper").show("slow");
        
    });
});

// my account area hide
$(document).ready(function(){
    $("#btnMyAccountHide").click(function () {
        $("#myAccountAreaWrapper").hide("slow");
    });
});