function abre_janela(url,janela) {
		 window.open(url,janela,'width=850,height=480,status=yes,menubar=yes,scrollbars=yes,resizable=yes,location=no');
}
function abre_imagem(url,janela,tamx,tamy) {
		 window.open(url,janela,'width='+tamx+',height='+tamy+',status=yes,menubar=yes,scrollbars=yes,resizable=yes,location=no');
}
function protegercodigo() {
if (event.button==2||event.button==3) {
alert('Todos os direitos reservados - INFO COOK');}
}
function atualizaIframe(){
var tamanho = document.getElementById("container").offsetHeight;
parent.document.getElementById("iFrameNews").style.height = tamanho;
}
function mostrar_produtos(){
	window.links_produtos.style.display = 'block';
	window.links_empresa.style.display = 'none';
	window.links_clientes.style.display = 'none';
}
function mostrar_empresa(){
	window.links_produtos.style.display = 'none';
	window.links_empresa.style.display = 'block';
	window.links_clientes.style.display = 'none';
}
function mostrar_clientes(){
	window.links_produtos.style.display = 'none';
	window.links_empresa.style.display = 'none';
	window.links_clientes.style.display = 'block';
}
function ocultar(){
	window.links_produtos.style.display = 'none';
	window.links_empresa.style.display = 'none';
	window.links_clientes.style.display = 'none';
}
document.onmousedown=protegercodigo;
