function OpenDictionary()
{
    window.location.href="Dictionary.aspx?keys=" + document.getElementById("input").value + "&InPage=1";
}
function reSetIframe(iframeId){
    var iframe = document.getElementById(iframeId);
    try{
        var bHeight = iframe.contentWindow.document.body.scrollHeight;
        var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;
        var height = Math.max(bHeight, dHeight);
        iframe.height =  height;
    }catch (ex){}
}