function mostraTBody(id){
	if (document.getElementById(id).style.display=='') {
		document.getElementById(id).style.display='none';
	} else {
		document.getElementById(id).style.display='';
	}
}
///////////////////////////////////=======================================
// funcao para centralizar página	
function centraliza(w,h){
	largura = w;
	altura = h;
	if (parseInt(navigator.appVersion) >= 4) 
		window.moveTo((screen.width/2)-(largura/2+10),(screen.height/2)-(altura/2+20));
}

function mudaProduto(img_change) 
{
	var tmpImg;
	tmp_img = document.getElementById(img_change).src;
	document.getElementById(img_change).src = document.getElementById('imgProdMain').src;
	document.getElementById('imgProdMain').src = tmp_img;
}

function produtoPopUp(id,nome){
	window.open('produto_popup.php?cod_produto='+id+'&nom_produto='+nome, 'glosh_produto', 'width=650px, height=600px, resizable=0, scrollbars=0');	
}

function mostraBotaoBusca(campo){
	if(campo.length == 0){
		document.getElementById('botaoBuscaTopo').style.display='none';	
	}else{
		document.getElementById('botaoBuscaTopo').style.display='';
	}
}