function OpenPopup(Action, CodProduto, Qtde, Detalhe, Loja)
{
 if (Action == 'V')
    {
     lista = window.open('../produtos/lista.asp?Action='+Action+'&CodProduto='+CodProduto+'&Qtde='+Qtde+'&Detalhe='+Detalhe+'&Loja='+Loja,'lista','width=710,height=400,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,copyhistory=yes,resizable=yes');
	 lista.focus();
	}
 else
    {
     if (Action == 'I' &&
	     Qtde <= 0)
        {
         alert('Favor preencher Qtde. maior que zero.');
         return;
        }
     if (Action == 'I' &&
	     isNaN(Qtde))
        {
         alert('Favor preencher Qtde. com números.');
         return;
        }

	 document.getElementById('iFramelista').src = './lista.asp?Action='+Action+'&CodProduto='+CodProduto+'&Qtde='+Qtde+'&Detalhe='+Detalhe+'&Loja='+Loja;
     lista.document.location = './lista.asp?Action=V&CodProduto='+CodProduto+'&Qtde='+Qtde+'&Detalhe='+Detalhe+'&Loja='+Loja;
	}
 return;
}

