﻿/***********************************************************************************/
/*Funções que interagem com o usuário e auxiliam a pesquisa por produtos no site toyo*/
/***********************************************************************************/
//var G_url = "http://toyo.gb2.selfip.com";
var G_url = "http://www.tektoyo.com.br";
/************************************************************************************/
function actionkey(_ev, _obj)
{
	var isNetscape, eventChooser, which;
	
	isNetscape = (navigator.appName.indexOf("Netscape")!=-1);
	eventChooser = (isNetscape)? _ev.which : event.keyCode; 
	which = String.fromCharCode(eventChooser);
    if( which == "\r" ){
        actionpesquisa(_obj.value);    
    }
}
/***********************************************************************************/
function actionpesquisa(_key)
{
    if(_key.length > 1){
        window.document.location.href = G_url + "/pesquisa/?key=" + _key;            
    }else{
        alert("É preciso digitar no mínimo 2 caracteres para realizar a pesquisa!\nEx: 'ts'");
    }
}
/***********************************************************************************/
function showprodutos(_idcat, _idsubcat)
{
    if(_idsubcat != 0 )
        window.location.href = G_url + "/produtos/?idcategoria=" + _idcat + "&idsubcategoria=" + _idsubcat;
    else
        window.location.href = G_url + "/produtos/?idcategoria=" + _idcat;
}
