﻿function trim(str) {
    return str.replace(/^\s+|\s+$/g, '');
}

function cleanHTML(str) {
    return str.replace(/[\,\+\;\"\'\/\\\<\>]/g, "");
}

function onEnterBusca(e, URL) {
    var key;
    if (e)
        key = e.keyCode;
    else
        key = e.which;

    if (key == 13) {
        enviarBusca(URL);
        return false;
    } else {
        return true;
    }
}

function enviarBusca(URL) {
    var txtBusca = document.getElementById('txtBusca');
    if (trim(txtBusca.value) == '') {
        txtBusca.focus();
    } else {
        if (txtBusca.value == 'BUSCAR PRODUTO') {
            txtBusca.value = '';
            txtBusca.focus();
        } else {
            parent.location = URL + '/busca.aspx?q=' + cleanHTML(txtBusca.value);
        }
    }
}
