var shouldSubmit = true;
function searchProducts()
{
    window.location.href='http://www.axxessinterface.com/products.aspx?s=' + document.getElementById("searchbox").value;
    shouldSubmit = false;
}
function handleKeyPress(e,form){
    var key=e.keyCode || e.which;
    if (key==13)
    {
        searchProducts();
    }
}