﻿$(function()
{
    $("#"+txt).focus();
    bs($("#"+txt),"");
    $("#"+txt).bind('keyup',function(event){if(event.keyCode==13) Enter();});
});
function callLogrefresh()
{
return;
};
function Enter()
{
    $("#"+btn).click();
}
