﻿function SearchLink() {
    var srch = $('#small_srch_txt').val();
    if (srch != "Leit" && srch != "") {
        window.location = "search.aspx?q=" + srch;
    }
    else {
        $('#small_srch_txt').val("");
    }
}

function preventsubmit(myField,e) {
    var keycode;
    if (window.event) keycode = window.event.keyCode;
    else if (e) keycode = e.which;
    else return true;

    
//    if (e.which == 13) {
    if (keycode == 13) {
        $("#aspnetForm").submit(function() {
            return false;
        });
        SearchLink();
    }
}

$(document).ready(function() {
    $('#img_srch_btn').click(SearchLink);   
});

var ajaxService = new Service("Service.svc");