﻿function KaliteYonlendir(bolum, srt) 
{
    window.open('KalitePrint.aspx?Bolum=' + bolum + '&Srt=' + srt + ' ', '_blank');
}
function AramaYap() {
    window.location = "../Urun/AramaSonucu.aspx?ID=-1&metin=" + document.getElementById('title').value.toString();
}
function AramaYapDis() {
    window.location = "Urun/AramaSonucu.aspx?ID=-1&metin=" + document.getElementById('title').value.toString();
}
function submitOnEnterDis(e) {
    var key;

    if (window.event)
        key = window.event.keyCode; //IE
    else
        key = e.which; //Firefox & others

    if (key == 13)
        AramaYapDis();
}
function submitOnEnter(e) {
    var key;

    if (window.event)
        key = window.event.keyCode; //IE
    else
        key = e.which; //Firefox & others

    if (key == 13)
        AramaYap();
}
