﻿/************************** Google Search SECTION **************************/
/* This is to fix the google search. So, that it does not fire unless at the search text/button. */

window.document.onkeydown = CheckEnter;

function CheckEnter(e) {
    if (!e) var e = window.event;

    try {
        if (e.keyCode == 13) {
            return false;
        }
    }
    catch (exception) {
        if (e.which == 13) {
            return false;
        }
    }
}
/************************** END of Google Search SECTION **************************/

