// JavaScript Document

function fnIndique(pProdCod){
	window.open('indique.asp?tipo=produto&codigo=' + pProdCod,'janIndique','resizable=no; width=600, height=250;');
}

function fnComprar(pProdCod){
	location.href="index.asp?ir=carrinho.asp&produto=" + pProdCod;
}

function fnProduto(pProdCod,pSecao,pSetor){
	if (pSecao==undefined){pSecao=""};
	if (pSetor==undefined){pSetor=""};	
	location.href="index.asp?ir=produtos_detalhes.asp&produto=" + pProdCod + "&secao=" + pSecao + "&setor=" + pSetor;
}

function fnSecao(pSecao) {
	location.href="index.asp?ir=produtos_lista.asp&tl=2&secao="	+ pSecao;
}

function fnAmplia(pImg) {
	document.getElementById("imgProdutoGd").src = "img.asp?t=Gd&id=" + pImg;
}

function fnPesquisa(pTipo,pId){
	location.href="index.asp?ir=produtos_lista.asp&tl="+pTipo+"&setor="	+ pId;		
}

function limpaCampo(pId){
	document.getElementById(pId).value = '';
}

function mudaTipo(tId,pId){
	if(document.getElementById(tId).style.display == ''){
		document.getElementById(tId).style.display = 'none';
		document.getElementById(pId).style.display = '';
		document.getElementById(pId).focus();
	}else{
		document.getElementById(tId).style.display = '';
		document.getElementById(pId).style.display = 'none';
	}
}