function submitPg(indexPg)
{
	document.getElementById("pgSel").value = indexPg;
	if((indexPg == '6') || (indexPg == '16')){
		document.getElementById("form_menu").action = "https://www.recarga.com.br";
	}
	document.getElementById("form_menu").submit();
}

function submitProduto(id_sub_categoria){
	document.getElementById("pgSel").value = '5';
	document.getElementById("id_subcategoria_produto").value = id_sub_categoria;
	document.getElementById("form_menu").submit();		
}

function submitVenda(indexPg,idVenda)
{
	document.getElementById("pgSel").value = indexPg;
	document.getElementById("idve").value = idVenda;				
	document.getElementById("form_menu").submit();
}

function submitMinhaConta(indexPg,opcao)
{
	document.getElementById("pgSel").value = indexPg;
	document.getElementById("opcaoMinhaConta").value = opcao;				
	document.getElementById("form_menu").submit();
}

function submitPgOpcaoIdVenda(indexPg,opcao,idVenda)
{
	document.getElementById("pgSel").value = indexPg;
	document.getElementById("opcao").value = opcao;	
	document.getElementById("id_venda").value = idVenda;	
	document.getElementById("form_menu").submit();
}

function submitPgLpPvSu(indexPg, idLoteProduto, idProdutoVenda, idSessaoUsuario)
{
	document.getElementById("pgSel").value = indexPg;
	document.getElementById("ilp").value = idLoteProduto;	
	document.getElementById("ipv").value = idProdutoVenda;	
	document.getElementById("isu").value = idSessaoUsuario;		
	document.getElementById("form_menu").submit();
}

function submitBusca(indexPg,padrao)
{
	document.getElementById("pgSel").value = indexPg;
	document.getElementById("campoBusca").value = padrao;				
	document.getElementById("form_menu").submit();
}


function getEnter(indexPg, padrao, tecla) 
{
	var key = tecla.keyCode;
    if(key == 13)
	{
		submitBusca(indexPg, padrao);
    }
}