﻿function EnterKeyAction(event, action, ctlId) {
    if (event.keyCode == 13) {
        if (action == "search") {
            KeyotiSearch_SearchButton_Click();
        }
        else if (action == "login") {
            if ($.browser.msie)
                document.getElementById(ctlId).click();
            else {
                event.preventDefault();
                $("'#" + ctlId + "'").click();
            }
        }
        return false;
    }
}
