﻿function SearchSite() {
    var val = document.forms[0].txtSearch.value;
    if (val.length < 3) {
        alert('Arama yapmak için en az 3 karakter girmelisiniz.');
        document.forms[0].txtSearch.focus();
    } else {
        document.location.href = "/arama.aspx?q=" + val;
    }

}

function SearchTxt(e) {

    if ((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13)) {
        SearchSite();
        return false;
    }
    else
        return true;

}

jQuery(function($) { 
/* Arama */
    var tMsg = "Aranacak kelimeyi girin...", tSearch = $('#txtSearch'), imgSearch = $('#SearchSiteImg');
    tSearch.val(tMsg);
    tSearch.click(function() { if ($(this).val() == tMsg) $(this).val(''); }).blur(function() { if ($(this).val() == '') $(this).val(tMsg); }).keyup(function(e) { if (e.which == 13) imgSearch.click(); });
    imgSearch.click(function() { if (tSearch.val() == tMsg || tSearch.val().length < 3) { alert('Arama yapmak için en az 3 karakter girmelisiniz'); tSearch.val('').focus(); return false; } document.location.href = "/arama.aspx?q=" + tSearch.val(); return false; });
});
