function fQuantidade(p_tipo, p_num, p_estoque){

var v_elemento = document.formulario.elements("qtd[]");


if(v_elemento != "undefined")
  {
  if(p_tipo == 1 && (parseInt(p_estoque) >  parseInt(v_elemento[p_num].value)))
    {
    v_elemento[p_num].value = parseInt(v_elemento[p_num].value)+1;
    }
    else if(p_tipo == 0  && parseInt(v_elemento[p_num].value) > 1)
           {
           v_elemento[p_num].value = parseInt(v_elemento[p_num].value)-1;
           }
   }
}



function fJanelaAvise(cod){
var vJanelaAvise = window.open('janela_aviseme.php?prod='+cod,'avise','width=250,height=120')
vJanelaAvise.focus();
}



// retorna quantidade pra enviar à cesta
function f2Cesta(p_num){

var v_elemento = document.formulario.elements("qtd[]");
return parseInt(v_elemento[p_num].value);

}


function fbuscar(){

document.formulario.action = "lista_produtos.php";
document.formulario.submit();
return true;

}




function fEsqueceuSenha(){

var vJanelaSenha = window.open("janela_senha.php","Upload","width=290,height=180");
vJanelaSenha.focus();

}











