// JavaScript Document
	
	//t_produtos()
	

     function cancela_kokie(value,horas){
			 var value = 10;
			 var horas = 1;
			 var expire = "";
			 
			 if(horas != null){
					expire = new Date((new Date()).getTime() + horas * 3600000);
					expire = "; expires=" + expire.toGMTString();
			 }
			document.cookie = "opcao" + "=" + escape(value) + expire;
			
		
		  
		
		}

     function inicio(){
	  	 	iframe = document.getElementById("iprincipal").contentWindow;
	  	     iframe._inicio();
     }
	 
	
	 
     function buscar(){
		 produto = (document.getElementById("itxtbusca").value).toUpperCase();
		 iframe = document.getElementById("iprincipal").contentWindow;
		 iframe._buscar(produto);
		 document.getElementById("itxtbusca").value = "";
	  }

   	function produtos(){
		 iframe = document.getElementById("iprincipal").contentWindow;
		 iframe._produtos();
	 }
	 
	function pesquisa(n1,n2){
		// iframe = document.getElementById("iprincipal").src = "painel/painel/comerce.html"; 
		 iframe = document.getElementById("iprincipal").contentWindow;
		 iframe._pesquisa(n1,n2);
	 }

